Notes
View all notes
Fetch a list of notes
GET https://web.r0app.com/api/v1/orgs/:org_id/notes
Returns a paginated list of notes in your account.
Query Parameters
include[]
String
If set to tags the first few tags associated with a note will be included in the response.
include[]
String
If set to contacts the first few contacts associated with a note will be included in the response.
Example request
curl https://web.r0app.com/api/v1/orgs/:org_id/notes \
-X GET \
-H 'Authorization: Bearer <token>'View a note
Fetch a note
GET https://web.r0app.com/api/v1/orgs/:org_id/notes/:note_id
Returns a single note given an id in the path.
Path Parameters
:note_id*
UUID
Example request
Upload a note
Upload a note
POST https://web.r0app.com/api/v1/orgs/:org_id/notes
Request Body
note[note]*
String
note[personal_note]
Boolean
If true no one else in your account can view the note.
tags[]
UUID
contacts[]
UUID
Example request
Update a note
Update a note
PATCH https://web.r0app.com/api/v1/orgs/:org_id/notes/:note_id
Path Parameters
:note_id*
UUID
Request Body
note[note]
String
personal_note
String
If true no one else in your account can view the note.
tags[]
UUID
contacts[]
UUID
Example request
Request body details:
Delete a note
Delete a note
DELETE https://web.r0app.com/api/v1/orgs/:org_id/notes/:note_id
Path Parameters
:note_id*
UUID
Example request
Last updated
Was this helpful?