Show Developer Menu

GET /conversations/{slug}

Issuing a GET call to conversations will allow you to retrieve a specific conversation

Example Request
curl 'https://{brand}.reamaze.io/api/v1/conversations/{slug}' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "subject": "Knock, knock?",
  "slug": "knock-knock",
  "status": 0,
  "created_at": "2000-01-01T00:00:01.001-01:00",
  "tag_list": ["joke"],
  "message": {
    "body": "I've got a great joke for you!"
  },
  "last_staff_message": {
    "body": "Who's there?",
    "created_at": "2000-01-01T01:00:01.001-01:00",
  },
  "last_customer_message": {
    "body": "Insert joke here",
    "created_at": "2000-01-01T01:00:01.001-01:00",
  },
  "author": {
    "name": "bob",
    "email": "bob@example.com"
  },
  "assignee": null,
  "category": {
    "name": "Support",
    "slug": "support",
    "email": "support@example.com",
    "channel": 1
  },
  "data": {
    "custom_attribute": "custom data"
  },
  "followers": [{
    "name": "bob",
    "email": "bob@example.com"
  }]
}