Skip to main content

Get Manifest

Return the list of EDI interchanges contained within a parcel.

Endpoint

GET /v2/parcels/manifest/{id}

Path Parameters

ParameterTypeRequiredDescription
idlongYesUnique identifier of the parcel

Response

Returns an array of ManifestInfo objects, one for each EDI interchange found in the parcel.

{
"success": true,
"data": [
{
"interchangeId": 555001,
"sender": "112233",
"receiver": "445566",
"documentType": "810",
"count": 3
},
{
"interchangeId": 555002,
"sender": "112233",
"receiver": "445566",
"documentType": "850",
"count": 7
}
]
}

Code Examples

curl -X GET "https://rest.ecgrid.io/v2/parcels/manifest/$ID" \
-H "X-API-Key: $ECGRID_API_KEY"

See Also