POST
/
v1
/
ticketing
/
{collection_id}
/
tickets
/
{ticket_id}
/
comments
curl --request POST \
  --url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets/{ticket_id}/comments \
  --header 'Content-Type: application/json' \
  --data '{
  "body": "<string>"
}'
{
  "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

collection_id
string
required
ticket_id
string
required

Query Parameters

raw
boolean

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

Body

application/json
body
string
required

Response

201 - application/json
data
object
required