action britbox_create_pin_request { label: "createPinRequest" description: "Creates a PIN request that will send an SMS to the given msisdn.\nThis call is to validate MSISDN entered by a user not comming through EE network.\nThis call should be followed by POST ee/pin.\n" provider: britbox method: PUT path: "/ee/pin" encoding: json input: { type: "object" required: ["accessToken", "msisdn"] properties: { accessToken: { type: "string" description: "EE API authorization Token received from GET /ee/token/create." } msisdn: { type: "string" description: "The msisdn." } trackingHeader: { type: "string" description: "trackingHeader" } } additionalProperties: false } output: { type: "object" required: ["pinReference", "trackingHeader"] properties: { pinReference: { type: "string" description: "The pinReference." } trackingHeader: { type: "string" description: "trackingHeader" } } additionalProperties: false } }