Skip to main content

Get Sender Identity

Retrieve a single sender identity by ID.


Endpoint

GET https://api.campaignlark.com/v1/sender-identities/:id

Path Parameters

ParameterTypeRequiredDescription
idintegerrequiredThe 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

StatusMessageCause
400Please provide a valid sender identity ID.id path param is missing or not a number.
404We were unable to find the sender identity.Sender identity does not exist in the workspace.