Skip to main content

Add Note

Adds an audit note to an interconnect record for tracking changes, approvals, or support history.

Endpoint

POST /v2/partners/note

Request Body

FieldTypeRequiredConstraintsDescription
interconnectIdintegerYesMust be a valid interconnect IDThe interconnect to add the note to
notestringYesThe note text to append to the interconnect record
{
"interconnectId": 9001,
"note": "Approved by network admin on 2024-06-01. Test EDI verified."
}

Response

Returns a success boolean confirming the note was added.

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

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/partners/note" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "interconnectId": 9001, "note": "Approved by network admin on 2024-06-01. Test EDI verified." }'

See Also