Skip to main content
GET
/
api
/
v1
/
exchanges
/
{exchange_id}
/
emails
Fetch Exchange Emails Api
curl --request GET \
  --url https://services.meetchase.ai/api/v1/exchanges/{exchange_id}/emails \
  --header 'X-API-Key: <api-key>'
[
  {
    "subject": "<string>",
    "body": {
      "text": "<string>",
      "html": "<string>"
    },
    "from_": {
      "name": "<string>",
      "address": "<string>"
    },
    "to": [
      {
        "name": "<string>",
        "address": "<string>"
      }
    ],
    "messageId": "<string>",
    "date": "2023-11-07T05:31:56Z",
    "threadId": "<string>",
    "inReplyToMessageId": "<string>",
    "references": "<string>",
    "cc": [],
    "bcc": [],
    "attachments": [],
    "unsubscribe_url": "<string>",
    "labels": [],
    "starred": false
  }
]

Authorizations

X-API-Key
string
header
required

Key used to authenticate user API requests.

Path Parameters

exchange_id
integer
required

Response

Successful Response

subject
string
required
body
EmailBody · object
required
Example:
{
"html": "<p>Hi,</p><p>Hope you are well...</p>",
"text": "Hi,\n\nHope you are well..."
}
from_
EmailRecipient · object
required
Example:
{
"address": "[email protected]",
"name": "Pete Tomlinson"
}
to
EmailRecipient · object[]
required
messageId
string
required
date
required
threadId
string | null
inReplyToMessageId
string | null
references
string | null
cc
EmailRecipient · object[]
bcc
EmailRecipient · object[]
attachments
DocumentInternal · object[]
unsubscribe_url
string | null
labels
string[]
starred
boolean
default:false