v1.0.0
OpenAPI 3.1.0

Get a sender

US region

Client Libraries

Get a sender

Returns information about a specific sender.

Path Parameters
  • sender_id
    Type: integer
    required

    The identifier of a sender.

Responses
  • application/json
  • 404

    The sender does not exist.

  • 429

    Your request is over the 10-per-second limit.

Request Example for get/v1/sender_identities/{sender_id}
curl https://api.customer.io/v1/sender_identities/1 \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "sender_identity": {
    "id": 4534,
    "deduplicate_id": "4534:1478035647",
    "name": "Cher Ami",
    "email": "test@example.com",
    "address": "Cher Ami <test@example.com>",
    "template_type": "email",
    "auto_generated": false
  }
}