Skip to main content
GET
/
client
/
sent-emails
/
{id}
Get sent email detail for authenticated user
curl --request GET \
  --url http://localhost:8080/api/v1/client/sent-emails/{id} \
  --header 'Authorization: <api-key>'
{
  "data": {
    "browser_url": "<string>",
    "client_id": 123,
    "contact_id": 123,
    "created_at": "<string>",
    "email_template_id": 123,
    "email_template_name": "<string>",
    "from_email": "<string>",
    "html_body": "<string>",
    "id": "<string>",
    "logs": [
      {
        "created_at": "<string>",
        "id": "<string>",
        "ip_address": "<string>",
        "is_bot": true,
        "provider_message_id": "<string>",
        "status_text": "<string>",
        "url": "<string>",
        "user_agent": "<string>"
      }
    ],
    "provider_message_id": "<string>",
    "status_text": "<string>",
    "status_updated_at": "<string>",
    "subject": "<string>",
    "text_body": "<string>",
    "to_email": "<string>"
  },
  "errors": [
    {
      "condition": "format",
      "error": "Invalid email format",
      "key": "email"
    }
  ],
  "message": "Operation successful",
  "meta": {},
  "success": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token or raw API key via Authorization header

Path Parameters

id
string
required

Sent email ID (UUID)

Response

OK

data
object
errors
object[]
message
string
Example:

"Operation successful"

meta
object
success
boolean
Example:

true