Skip to main content

Get Mailbox Default

Retrieves the default mailbox associated with an ECGrid ID.

Endpoint

POST /v2/ids/tp-get-mailbox-default

Request Body

FieldTypeRequiredConstraintsDescription
ecGridIdintegerYesMust be a valid ECGrid IDThe ECGrid ID to retrieve the default mailbox for
{
"ecGridId": 123456
}

Response

Returns the default mailbox information for the specified ECGrid ID.

{
"success": true,
"data": {
"mailboxId": 1001,
"networkId": 42,
"mailboxName": "Acme Corp Mailbox",
"status": "Active"
}
}

Code Examples

curl -X POST "https://rest.ecgrid.io/v2/ids/tp-get-mailbox-default" \
-H "X-API-Key: $ECGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "ecGridId": 123456 }'

See Also