Skip to main content

Acknowledgment Note

Attach a free-text acknowledgment note to a parcel record for auditing or communication purposes.

Endpoint

POST /v2/parcels/acknowledgment-note

Request Body

FieldTypeRequiredConstraintsDescription
parcelIdlongYesUnique identifier of the parcel
notestringYesNon-emptyAcknowledgment text to attach to the parcel
{
"parcelId": 987654321,
"note": "Received and processed by AP system at 2026-05-07T10:15:00Z."
}

Response

Returns a success boolean indicating the note was attached to the parcel record.

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

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/parcels/acknowledgment-note" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "parcelId": 987654321, "note": "Received and processed by AP system at 2026-05-07T10:15:00Z." }'

See Also