Skip to main content

List Notes

Retrieves all audit notes attached to an interconnect record.

Endpoint

POST /v2/partners/notelist

Request Body

FieldTypeRequiredConstraintsDescription
interconnectIdintegerYesMust be a valid interconnect IDThe interconnect to retrieve notes for
{
"interconnectId": 9001
}

Response

Returns an array of note objects, each containing the note text, timestamp, and the user who created it.

{
"success": true,
"data": [
{
"text": "Approved by network admin on 2024-06-01. Test EDI verified.",
"timestamp": "2024-06-01T14:35:00Z",
"userId": 501
},
{
"text": "Production go-live confirmed by trading partner contact.",
"timestamp": "2024-06-03T09:10:00Z",
"userId": 502
}
]
}

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/partners/notelist" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "interconnectId": 9001 }'

See Also