Skip to main content
GET
/
emails
/
{id}
Get Email by ID
curl --request GET \
  --url https://api.deliverykey.com/v1/emails/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "from": "[email protected]",
    "to": "[email protected]",
    "subject": "Hello, World!",
    "html": "<string>",
    "id": "b722edc1-7ad4-4845-9fa5-e4c4f2a923d4",
    "text": "<string>",
    "created_at": "2022-10-12T18:57:23.000000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

OK

data
object