Get Sender Identity
Retrieve a single sender identity by ID.
Endpoint
GET https://api.campaignlark.com/v1/sender-identities/:id
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | required | The sender identity ID. |
Sample Request
GET https://api.campaignlark.com/v1/sender-identities/1
Response
Success — 200 OK
{
"error": null,
"data": {
"id": 1,
"domain_id": 1,
"display_name": "My Store",
"local_part": "hello",
"domain_name": "example.com"
}
}
Errors
| Status | Message | Cause |
|---|---|---|
400 | Please provide a valid sender identity ID. | id path param is missing or not a number. |
404 | We were unable to find the sender identity. | Sender identity does not exist in the workspace. |