cURL
curl --request PATCH \ --url http://localhost:8000/api/v1/ticketing/{collection_id}/tickets/{ticket_id}/comments/{comment_id} \ --header 'Authorization: Bearer <token>' \ --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>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Include raw response. When you want more data from the source
Show child attributes