List a contact's notes
GET
/v1/contacts/{contact_id}/notes
const url = 'https://api.vocapable.com/v1/contacts/example/notes?limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.vocapable.com/v1/contacts/example/notes?limit=50' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”contact_id
required
Contact Id
string
Query Parameters
Section titled “Query Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
CursorPage[ContactNote]
object
data
required
Data
Array<object>
ContactNoteOne working note a rep left on a contact.
author_ref is whichever credential wrote it - an API key id, or a user id when a
dashboard session did. It is not a person’s name, and nothing here resolves it to one.
has_more
Has More
boolean
Example
{ "has_more": false}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}