Skip to main content
GET
/
v3
/
orders
/
{id}
/
emails
List order emails
curl --request GET \
  --url https://api.myscalev.com/v3/orders/{id}/emails \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "from": "<string>",
      "id": 123,
      "inserted_at": "2023-11-07T05:31:56Z",
      "message_id": "<string>",
      "order_id": 123,
      "status": "<string>",
      "status_history": [
        {
          "status": "<string>",
          "timestamp": "2023-11-07T05:31:56Z"
        }
      ],
      "subject": "<string>",
      "to": "<string>",
      "type": "<string>",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "is_paginated": false
}

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

Order emails list

Non-paginated list payload for v3.

data
OrderEmail · object[]
required
is_paginated
enum<boolean>
required
Available options:
false
Example:

false