Skip to main content

Get Carbon Copy

Retrieves the details of a specific carbon copy rule by its unique ID.

Endpoint

GET /v2/carboncopies/{id}

Path Parameters

ParameterTypeRequiredDescription
idintegerYesUnique identifier of the carbon copy rule

Response

Returns the carbon copy rule details including source and destination mailboxes, direction, and status.

{
"success": true,
"data": {
"ccId": 1042,
"fromMailboxId": 101,
"toMailboxId": 202,
"status": "Active",
"direction": "InBox",
"created": "2025-01-15T10:30:00Z"
}
}

ENUMs

This endpoint returns values from the Direction and Status ENUMs. See ENUMs Reference for all valid values.

Code Examples

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

See Also