| Time                       | Status            | User Agent    |            |
| :--                        | :--               | :--           | :--        |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

##### Fields

- **carrierId**  (string, required): The carrier that should have their labels go through the end-of-day process.
- **originCountry** (string, required): The ISO 3166-1 alpha-2 country code of the origin for any labels that should go through the end-of-day process.
- **originPostal**  (string, required): The postal code of the origin for any labels that should go through the end-of-day process.
- **partnerManifestId**  (string, required): The identifier used by the partner to associate these labels.
- **fromDateTime** (date-time): Any labels with a manifestDateTime after this ISO-8601 date-time will go through the end-of-day process (if they have not already been through this process). If this is not provided, all labels that meet the other criteria, and have not already been through the end-of-day process, will be updated.
- **toDateTime** (date-time): Any labels with a manifestDateTime prior to this ISO-8601 date-time will go through the end-of-day process (if they have not already been through this process). If this is not provided, all labels that meet the other criteria, and have not already been through the end-of-day process, will be updated.

- **X-DELEGATED-PARTNER-ID** (string)

#### Responses

- ``200``: The number of labels that were manifested
- ``400``: Invalid country, postal code, or carrier id

```bash
curl --request PUT \
     --url https://api.shipium.com/api/v1/deliveryexperience/shipment/carrierSelection/labels/endOfDayManifest \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

```json
{ "status": "success", "code": 200 }
```

```json
{ "status": "error", "code": 400, "message": "Invalid input" }
```
