Skip to main content

Get Partner

Retrieves a single interconnect (partner relationship) record by its numeric ID.

Endpoint

GET /v2/partners/{id}

Path Parameters

ParameterTypeRequiredDescription
idintegerYesThe numeric Interconnect/Partner ID to retrieve

Response

Returns an InterconnectIDInfo object describing the partner relationship.

{
"success": true,
"data": {
"interconnectId": 9001,
"ecGridIdFrom": 123456,
"ecGridIdTo": 654321,
"status": "Active",
"created": "2024-01-15T08:30:00Z",
"modified": "2024-03-22T14:00:00Z"
}
}

ENUMs

Status

ValueDescription
DevelopmentInterconnect is in development/testing phase
ActiveInterconnect is live; EDI routing is permitted
PreproductionInterconnect is staged but not yet live
SuspendedInterconnect is temporarily disabled
TerminatedInterconnect has been permanently ended

See Enums reference for complete enum definitions.

Code Examples

curl -X GET "https://rest.ecgrid.io/v2/partners/$ID" \
-H "X-API-Key: $ECGRID_API_KEY"

See Also