Skip to main content

Get Interchange Manifest

Returns the manifest of EDI functional groups and transaction sets contained within an interchange.

Endpoint

GET /v2/interchanges/get-manifest/{id}

Path Parameters

ParameterTypeRequiredDescription
idlongYesThe unique ECGrid Interchange ID.

Response

Returns an array of ManifestInfo objects, each describing a functional group within the interchange — including the functional group ID, transaction set type, and transaction counts.

{
"success": true,
"data": [
{
"functionalGroup": "PO",
"transactionSetType": "850",
"transactionSetCount": 3,
"groupControlNumber": "100001"
},
{
"functionalGroup": "IN",
"transactionSetType": "810",
"transactionSetCount": 1,
"groupControlNumber": "100002"
}
]
}

Code Examples

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

See Also