Home//
REST API Reference
/- List all deleted conversation IDs
Add tag to a conversation
Remove tag from a conversation
List all conversations
Creates a conversation
Retrieve a conversation
Update a conversation
Delete a conversation
Search conversations
Reply to a conversation
Manage a conversation
Attach a contact to a conversation
Detach a contact from a group conversation
List handling events
List side conversations
Redact a conversation part
Merge a conversation
Convert a conversation to a ticket
Conversation
Conversation List Item
Conversation Monitor Evaluation
Conversation Scorecard
Conversation Scorecard Evaluator
Conversation Scorecard Evaluator Result
Reviewed Teammate
Merge Conversations Request
List all deleted conversa...
List all deleted conversation IDs.
Pagination
You can use pagination to limit the number of results returned. The default is 20 results per page. You can navigate to next pages using the page param.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.16"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.16
- The production API serverhttps://api.intercom.io/conversations/deleted
- The european API serverhttps://api.eu.intercom.io/conversations/deleted
- The australian API serverhttps://api.au.intercom.io/conversations/deleted
curl -i -X GET \
'https://api.intercom.io/conversations/deleted?page=1&per_page=20&order=desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.16'View all deleted conversation IDs
String representing the object's type. Always has the value conversations.list.
Example:"conversations.list"
pagesobject(Pagination Object)
The majority of list resources in the API are paginated to allow clients to traverse data over multiple requests.
Their responses are likely to contain a pages object that hosts pagination links which a client can use to paginate through the data without having to construct a query. The link relations for the pages field are as follows.
Response
{ "type": "conversations.list", "total_count": 4, "pages": { "type": "pages", "next": "https://api.intercom.io/conversations/deleted?per_page=2&order=desc&page=2", "page": 1, "per_page": 2, "total_pages": 2 }, "conversations": [ { … }, { … } ] }