Snooze a conversation
Example Request & Response
$ curl 'https://api.intercom.io/conversations/<id>/reply' \\\n-X POST \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json' \\\n-H 'Content-Type:application/json' -d\n\n{\n \"message_type\":\"snoozed\",\n \"admin_id\": \"724860\",\n \"snoozed_until\":\"1501512795\"\n}
You can snooze a conversation to reopen on a future date.
Request Path Parameters
Parameter | Type | Required? | Description |
---|---|---|---|
id | String | Yes | The identifier for the conversation as given by Intercom. |
Request Body Parameters
To snooze a conversation:
Parameter | Type | Required? | Description |
---|---|---|---|
message_type | String | Yes | Always snoozed . |
admin_id | String | Yes | The id of the admin which is performing the action. |
snoozed_until | UNIX Timestamp | Yes | The time you want the conversation to reopen. |
Response
This will return the Conversation which was snoozed.