action britbox_get_eligible_offers { label: "getEligibleOffers" description: "Returns eligible partner specific offers for the querying partner for an EE MSISDN.\nThis call is supposed to be called after we have MSISDN accired.\nThis call should be followed by POST /ee/msisdn.\n" provider: britbox method: POST path: "/ee/offers" 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: ["eligibleOffers"] properties: { eligibleOffers: { type: "array" description: "The list of eligible offers." items: { type: "object" required: ["name"] properties: { name: { type: "string" description: "The identifier of an offer." } } additionalProperties: false } } } additionalProperties: false } }