Skip to main content
GET
/
api
/
v1
/
replies
List all Campaign Replies
curl --request GET \
  --url https://api.example.com/api/v1/replies/
[
  {
    "id": 123,
    "schedule_id": 123,
    "body_plain_text": "<string>",
    "body_html": "<string>",
    "received_on": "2023-11-07T05:31:56Z",
    "mail_from": "<string>",
    "subject": "<string>",
    "reply_classification": "positive"
  }
]

Query Parameters

campaign_uid
string
required

UID of Campaign to fetch replies from.

Response

Success

id
integer
required
schedule_id
integer
required
body_plain_text
string
required
body_html
string
required
received_on
string<date-time>
required
mail_from
string | null
Maximum string length: 500
subject
string | null
reply_classification
enum<string> | null
  • positive - Positive
  • neutral - Neutral
  • negative - Negative
Available options:
positive,
neutral,
negative