Get a sender identity

Returns one sender identity owned by the authenticated organization. Other organizations' ids are reported as not found.

GET
/v1/email/senders/{id}

Returns one sender identity owned by the authenticated organization. Other organizations' ids are reported as not found.

x-api-key<token>

In: header

Path Parameters

id*string
Match^sender_[0-9a-hjkmnp-tv-z]{16,24}$

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/email/senders/string"
{  "id": "string",  "organizationId": "string",  "email": "string",  "name": "string",  "domainId": "string",  "verificationStatus": "pending",  "verifiedAt": "string",  "verificationToken": "string",  "providerLifecycle": "provisioning",  "providerFailureCode": "string",  "isDefault": true,  "replyToEmails": [    "string"  ],  "deliverability": {    "bounceRate": 0,    "complaintRate": 0,    "windowSends": 0,    "sendingStatus": "enabled"  },  "series": [    0  ],  "isActive": true,  "createdAt": "string",  "updatedAt": "string"}

Related