Skip to main content
DELETE
Delete a session comment
Deletes an internal note. The note stops appearing in the inbox and in List history, and the endpoint answers 204 with no body. The acting agent is passed as the agent_id query parameter, since a DELETE carries no body:
Only the note’s author may delete it — anyone else receives a 403. A comment_uuid that belongs to a different session returns a 404.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

session_id
string
required

The unique identifier of the chat session

comment_uuid
string<uuid>
required

The unique identifier of the comment

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Query Parameters

agent_id
integer
required

Agent user ID performing the deletion. Only the note's author may delete it.

Required range: x <= 9007199254740991

Response

Default Response