Get sender details
GET /senders/find_one.{Format}
Retrieves the details about a specific campaign sender using the sender's email address.
Request
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
| Format | path | string | true | The supported file format for getting a response.Possible values: jsonand xml. |
| query | string | true | The email address of the sender that contains the details you are requesting. | |
| apikey | query | string | true | The API key of your account. |
Response
| Status | Description | Headers | Schema |
|---|---|---|---|
| 200 OK | The request is successful. | Content-Type/jsonAccept/json | N/A |
-
Code- the response code. This is0if successful. -
Error- the response error message. This isnullif successful. -
Context- an object that contains all the information about the sender:-
ID- the ID of the sender. -
Name- the name of the sender. -
Email- the email address of the sender. -
CreatedOn- the date that the sender was created. -
IsEnabled- this istrueif the sender is enabled andfalseif it is not. -
SpfVerified- this istrueif the SPF record for the sender is enabled andfalseif it is not. -
DkimVerified- this istrueif the DKIM record for the sender is enabled andfalseif it is not. -
DkimPublic- specifies the sender's email public DKIM. -
DmarcVerified- this istrueif the Dmarc record for the sender is enabled and false if it is not. -
IsVerified- this istruewhen the sender has both statuses Enabled AND Accepted.
-