GET

List Contact Notes

Lists every note attached to a contact, newest-first.

GEThttps://api.vantaxai.com/v1/contacts/{contact_id}/notes

Headers

  • Authorizationstringrequired

    Bearer authentication with your secret API key.

    example: Bearer vx_live_3fa9c2…

Path Parameters

  • contact_idstringrequired

    The contact whose notes to list.

    example: ct_9b21d3

Request

curl -X GET https://api.vantaxai.com/v1/contacts/ct_9b21d3/notes \
  -H "Authorization: Bearer vx_live_3fa9c2..."

Response

{
  "success": true,
  "data": [
    {
      "id": "note_61aa09",
      "contact_id": "ct_9b21d3",
      "note": "Called about a quote for the spring campaign. Follow up Friday.",
      "created_at": "2026-01-15T14:05:00Z"
    }
  ]
}