Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

List conversation comments

GET/v1/conversations/{convID}/comments
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
convIDstringrequired
Conversation ID
Responses
200OK
itemsConversationCommentItem[] | nullrequired
Show properties
Array of ConversationCommentItem
contentstringrequired
conversation_idstringrequired
created_atstringrequired
created_bystringrequired
created_by_namestringrequired
idstringrequired
mentionsConversationCommentMention[] | nullrequired
Show properties
Array of ConversationCommentMention
user_idstringrequired
user_namestringrequired
organization_idstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
404Not Found
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X GET "/v1/conversations/string/comments"
Response
{
  "items": [
    {
      "content": "string",
      "conversation_id": "string",
      "created_at": "string",
      "created_by": "string",
      "created_by_name": "string",
      "id": "string",
      "mentions": [
        {
          "user_id": "string",
          "user_name": "string"
        }
      ],
      "organization_id": "string"
    }
  ]
}