Show Developer Menu

GET /contacts/{email}/notes

Issuing a GET call to /contacts/{email}/notes will allow you to retrieve notes for a specific contact. Notice that notes are tied to a contact.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/contacts/{email}/notes' \
-u {login-email}:{api-token} \
-H 'Accept: application/json'
Example Response
[
  {
    "id": 123,
    "note": "this is a note",
    "created_at": "2020-12-28T15:55:35.121-06:00",
    "updated_at": "2020-12-28T15:55:35.121-06:00",
    "creator": {
      "name": "Bob Jones",
      "email": "bob@mail.com"
    }
  },
  {
    "id": 456,
    "note": "another note",
    "created_at": "2020-12-28T15:55:35.121-06:00",
    "updated_at": "2020-12-28T15:55:35.121-06:00",
    "creator": {
      "name": "Sally Smith",
      "email": "sally@mail.com"
    }
  }
]
Notes
  • There are no options, this will return all notes for a given contact