← Back to API Reference

GET /emails/receiving/{email_id}

Retrieve Received Email

Get one inbound email mapped from the ticket mailbox.

Note: Returns one inbound ticket mailbox message.

Request (cURL)

curl -X GET "http://localhost:8080/v1/emails/receiving/em_123" \
  -H "Authorization: Bearer <API_KEY>"

Response Example

{
  "object": "email",
  "id": "em_recv_123",
  "from": "customer@example.com",
  "to": [
    "support@mail.example.com"
  ],
  "subject": "Question about my order"
}