Notes
Use this endpoint to obtain details on Adaptix's contact notes.
Get Note
HTTP Request
GET /notes/ID
Response
Expected Response Code: 200
See JSON code example.
Note Properties
Name | Type | Description |
---|---|---|
id | int | ID of the note |
lead | array | data of the contact |
text | string | Note text |
type | string | Note type |
datetime | datetime | Date and time related to the note. |
List Contact Notes
HTTP Request
GET /notes
Response
Expected Response Code: 200
See JSON code example.
Note Properties
Name | Type | Description |
---|---|---|
id | int | ID of the note |
lead | array | data of the contact |
text | string | Note text |
type | string | Note type |
datetime | datetime | Date and time related to the note. |
Create Note
HTTP Request
POST /notes/new
Post Parameters
Name | Description |
---|---|
text | string |
type | string |
datetime | datetime |
Response
Expected Response Code: 201
Properties
Same as Get Note.
Edit Note
PUT creates a note if the given ID does not exist and clears all the note information, adds the information from the request. PATCH fails if the note with the given ID does not exist and updates the note field values with the values form the request.
HTTP Request
To edit a note and return a 404 if the note is not found:
PATCH /notes/ID/edit
To edit a note and create a new one if the note is not found:
PUT /notes/ID/edit
Post Parameters
Name | Description |
---|---|
text | string |
type | string |
datetime | datetime |
Response
If PUT
, the expected response code is 200
if the note was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Note.
Delete Note
Delete a note.HTTP Request
DELETE /notes/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Note.