DELETE
/
ticket-messages
/
{id}
curl --request DELETE \
  --url https://core.api.ravennahq.com/api/ticket-messages/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "content": "<string>",
  "authorId": "<string>",
  "author": {
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "jsmith@example.com",
    "image": "<string>"
  },
  "ticketId": "<string>",
  "source": "<string>",
  "status": "<string>",
  "slackChannelId": "<string>",
  "slackMessages": [
    {
      "id": "<string>",
      "ts": "<string>",
      "channelId": "<string>",
      "teamId": "<string>",
      "ticketMessageId": "<string>",
      "threadId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "deleted": true,
  "reactions": [
    {
      "id": "<string>",
      "emoji": "<string>",
      "authorId": "<string>",
      "ticketMessageId": "<string>"
    }
  ],
  "emailMessageId": "<string>",
  "emailInReplyTo": "<string>",
  "private": true,
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "deletedAt": "<string>"
}

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

200
application/json
Successful response
id
string
required
content
string
required
authorId
string
required
author
object
required
ticketId
string
required
source
string | null
required
status
string | null
required
slackChannelId
string | null
required
slackMessages
object[]
required
deleted
boolean
required
reactions
object[]
required
emailMessageId
string | null
required
emailInReplyTo
string | null
required
private
boolean
required
createdAt
string
required
updatedAt
string
required
deletedAt
string | null
required