Detach a contact from a subscription
Example Request & Response
$ curl https://api.intercom.io/contacts/<contact_id>/subscriptions/<id> \\\n-X DELETE \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json'\n
Example Errors
HTTP/1.1 404 NOT FOUND\n{\n \"type\": \"error.list\",\n \"request_id\": \"9a3d0816-9707-4598-977e-c009ba630148\",\n \"errors\": [\n {\n \"code\": \"not_found\",\n \"message\": \"User Not Found\"\n }\n ]\n}
HTTP/1.1 404 NOT FOUND\n{\n \"type\": \"error.list\",\n \"request_id\": \"060932ab-ab9d-4f89-88f3-d0152d005873\",\n \"errors\": [\n {\n \"code\": \"not_found\",\n \"message\": \"Resource Not Found\"\n }\n ]\n}
You can detach a subscription for a single contact.
Request Path Parameter
Attribute | Type | Description |
---|---|---|
contact_id | String | The unique identifier for the contact which is given by Intercom |
id | String | The unique identifier for the subscription type which is given by Intercom |
Response
This will return a Subscription Type model for the subscription type that was removed from the contact.