GET
/
v1
/
ticketing
/
{collection_id}
/
tickets
/
{ticket_id}
/
comments
/
{comment_id}
curl --request GET \
  --url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets/{ticket_id}/comments/{comment_id}
{
  "data": {
    "id": "<string>",
    "ticket_id": "<string>",
    "body": "<string>",
    "html_body": "<string>",
    "created_by_id": "<string>",
    "created_by": {},
    "is_private": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Path Parameters

comment_id
string
required
collection_id
string
required
ticket_id
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Response

200 - application/json
data
object
required