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

ParameterTypeRequired?Description
idStringYesThe identifier for the conversation as given by Intercom.

Request Body Parameters

To snooze a conversation:

ParameterTypeRequired?Description
message_typeStringYesAlways snoozed.
admin_idStringYesThe id of the admin which is performing the action.
snoozed_untilUNIX TimestampYesThe time you want the conversation to reopen.

Response

This will return the Conversation which was snoozed.