Skip to main content

Get Comm

Retrieves the details of a specific communication channel (Comm) by its unique ID.

Endpoint

GET /v2/comms/{id}

Path Parameters

ParameterTypeRequiredDescription
idintegerYesUnique identifier of the communication channel

Response

Returns the full CommIDInfo object for the specified communication channel.

{
"success": true,
"data": {
"commId": 5001,
"mailboxId": 101,
"commType": "as2",
"identifier": "MYCOMPANY-AS2",
"status": "Active",
"useType": "Production",
"privateKeyRequired": true,
"withCerts": true
}
}

ENUMs

This endpoint returns values from the NetworkGatewayCommChannel, Status, and UseType ENUMs. See ENUMs Reference for all valid values.

Code Examples

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

See Also