Retrieves the fulfilment options available given a country code and postcode.
GET /newspaper/fulfilment/options?postCode=(postCodeValue)&countryCode=(countryCodeValue)
For security reasons requests must be made over HTTPS.
| Path Param | Required? | Value |
|---|---|---|
| postCode | Yes | Post Code Id |
| countryCode | Yes | Country Code Value |
| Header | Value |
|---|---|
| X-Api-Key | API key value |
Not supported.
A JSON representation of the example of which is as below:
{
“options”: [
{
“code” : “HD”,
“displayName” : “Home Delivery”,
“deliveryCompany”: “EDG Group Ltd”,
“leadDeliveryTime” : 3,
“deliveryCompanyCode” : “EDG”
}
]
}
| Http Status | Description |
|---|---|
| 200 OK | The fulfilment options available was retrieved successfully. |
| 400 Bad Request | The request was invalid. This response occurs when you have an invalid request. You may refer to response for details around why the request was invalid. |
| 403 Forbidden | The x-api-key provided is invalid. Whenever the user provides an x-api-key, validation against an api key whitelist is performed. If the x-api-key provided is not in the whitelist, this error is returned. |