Skip to main content

Update Description

Updates the human-readable description label for a trading partner ECGrid ID.

Endpoint

POST /v2/ids/tp-update-description

Request Body

FieldTypeRequiredConstraintsDescription
ecGridIdintegerYesMust be a valid ECGrid IDThe ECGrid ID to update
descriptionstringYesNew description text for the trading partner
{
"ecGridId": 123456,
"description": "Acme Corp — Production EDI"
}

Response

Returns a success boolean confirming the description was updated.

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

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/ids/tp-update-description" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "ecGridId": 123456, "description": "Acme Corp — Production EDI" }'

See Also