Get sender details
Request
Parameter |
In |
Type |
Required |
Description |
---|---|---|---|---|
|
path |
string |
true |
The supported file format for getting a response. Possible values: |
|
query |
string |
true |
The email address of the sender that contains the details you are requesting. |
|
query |
string |
true |
The API key of your account. |
GET https://{hostname}/v3/senders/find_one.{Format}?Email=&apikey=
Response
Status |
Description |
Headers |
Schema |
---|---|---|---|
|
The request is successful. |
|
N/A |
{
"Code": 0,
"Error": null,
"Context": {
"ID": "01234567-89ab-cdef-0123-456789abcdef",
"Name": "Your Name",
"Email": "[email protected]",
"CreatedOn": "/Date(1323857838000+0200)/",
"IsEnabled": true,
"SpfVerified": false,
"DkimVerified": false,
"DkimPublic": "Some DkimPublic"
}
}
-
Code
- the response code. This is0
if successful. -
Error
- the response error message. This isnull
if 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 istrue
if the sender is enabled andfalse
if it is not. -
SpfVerified
- this istrue
if the SPF record for the sender is enabled andfalse
if it is not. -
DkimVerified
- this istrue
if the DKIM record for the sender is enabled andfalse
if it is not. -
DkimPublic
- specifies the sender's email public DKIM.
-