Skip to content

Get one email — attempts + the SES lifecycle timeline

GET
/v1/emails/{id}

The email plus its delivery attempts (to SES) and its lifecycle timeline (D2) — the sent/delivered/bounced/complained/rejected facts the SES event correlator recorded, oldest first.

Authorizations

apiKey

Scoped API key. Scopes are readwriteadmin. A call needing more scope than the key holds returns 403 insufficient_scope.

Type
HTTP (bearer)

Parameters

Path Parameters

id*
Type
string
Required

Responses

The email, its attempts, and its lifecycle timeline.

application/json
JSON
{
  
"id": "evt_01JX9",
  
"from": "string",
  
"to": [
  
  
"string"
  
],
  
"cc": [
  
  
"string"
  
],
  
"bcc": [
  
  
"string"
  
],
  
"subject": "string",
  
"status": "string",
  
"created_at": "string",
  
"attempts": [
  
  
{
  
  
  
"number": 1,
  
  
  
"status": 200,
  
  
  
"duration_ms": 142,
  
  
  
"at": "string",
  
  
  
"response_excerpt": "string"
  
  
}
  
],
  
"timeline": [
  
  
{
  
  
  
"type": "string",
  
  
  
"subtype": "string",
  
  
  
"at": "string",
  
  
  
"detail": "string"
  
  
}
  
]
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

Emithook · a Finnoto product