Skip to main content

Add VAN

Associates a VAN (Value Added Network) qualifier and ID with an existing ECGrid ID to enable cross-network EDI routing.

Endpoint

POST /v2/ids/tp-add-van

Request Body

FieldTypeRequiredConstraintsDescription
ecGridIdintegerYesMust be a valid ECGrid IDThe ECGrid ID to associate the VAN entry with
vanQualifierstringYesISA qualifier code used by the VANVAN-side ISA qualifier
vanIdstringYesISA ID used by the VANVAN-side ISA identifier
{
"ecGridId": 123456,
"vanQualifier": "01",
"vanId": "VANPARTNER001"
}

Response

Returns a success boolean confirming the VAN association was added.

{
"success": true,
"data": true
}

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/ids/tp-add-van" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "ecGridId": 123456, "vanQualifier": "01", "vanId": "VANPARTNER001" }'

See Also