Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8496,6 +8496,10 @@ paths:
{% admonition type="warning" name="Experimental" %}
This is an experimental endpoint. It requires a valid HMAC secret for authentication in addition to the standard bearer token.
{% /admonition %}

{% admonition type="info" name="Ticket Conversations" %}
For ticket conversations, the `write_tickets` OAuth scope is required. Requests without this scope will receive a 401 Unauthorized response.
{% /admonition %}
responses:
'200':
description: Conversation part updated
Expand Down Expand Up @@ -8551,8 +8555,8 @@ paths:
type: error.list
request_id: a3e5b8e2-1234-5678-9abc-def012345678
errors:
- code: unauthorized
message: Access Token Invalid
- code: token_unauthorized
message: Not authorized to access resource
schema:
"$ref": "#/components/schemas/error"
'403':
Expand Down Expand Up @@ -11999,9 +12003,11 @@ paths:
examples:
missing message_id:
value:
type: error
request_id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
message: "message_id is required"
type: error.list
request_id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
errors:
- code: parameter_not_found
message: message_id is required
schema:
"$ref": "#/components/schemas/error"
'401':
Expand Down Expand Up @@ -23890,6 +23896,11 @@ components:
whatsapp_message_status:
type: object
description: The delivery status of a specific WhatsApp message.
required:
- conversation_id
- status
- type
- message_id
properties:
conversation_id:
type: string
Expand All @@ -23902,8 +23913,14 @@ components:
example: delivered
type:
type: string
description: Event type
description: The type of WhatsApp message.
example: broadcast_outbound
enum:
- broadcast_outbound
- inbox_outbound
- inbound
- admin_reply
- admin_reply_with_template
created_at:
type: integer
description: Creation timestamp
Expand Down
Loading