Create a note for contact

Example Request & Response

  1. curl
  2. http
$ curl https://api.intercom.io/contacts/<id>/notes \\\n-X POST \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json' -d\n\n{\n  \"body\": \"Shiny\",\n  \"admin_id\": \"12345\"\n}\n

Example Errors

  1. http
  2. http
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\": \"Contact Not Found\"\n    }\n  ]\n}
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\": \"Resource Not Found\"\n    }\n  ]\n}

You can remove a note to a single contact.

Request Path Parameter

ParameterTypeRequired?Description
idStringYesThe unique identifier for the contact which is given by Intercom.

Request Body Parameter

ParameterTypeRequired?Description
bodyStringYesThe text of the note.
admin_idStringYesThe unique identifier for the admin which is given by Intercom.

Response

This will return a Note model for the note that was added to the contact.