Create Manifest Document

This operation creates a USPS 3877 manifest document for ERR shipments.

SecuritybearerAuth
Request
query Parameters
docType
required
string

The type of document to generate set to 'form3877'.

Example: docType=form3877
Request Body schema: application/json
required
object

The address details for the form.

shipmentType
required
string

The type of shipment. Set to 'ERR' for ERR-type shipments.

carrierAccountId
required
string

The carrier account ID for the shipment.

dateOfShipment
required
string <date-time>

The date and time of the shipment in ISO 8601 format.

Responses
201

USPS 3877 manifest document has been created successfully.

400

Invalid request.

401

The request could not be authorized.

500

The request could not be completed due to an internal error.

post/api/v1/manifest/document
Request samples
application/json
{
  • "formAddress": {
    },
  • "shipmentType": "ERR",
  • "carrierAccountId": "45R4zA7QAaWsiusuhu",
  • "dateOfShipment": "2024-09-26T18:29:59.999Z"
}
Response samples
application/json
{
  • "manifestId": "L1DRMbV5aLeMYva15jogwl"
}