Get note-types
GET
GET
http://api.atzcrm.com/v1/note-typesRetrieve the details of all note-types.
Request
GET
GET /v1/note-types
Headers
- Authorization: Bearer your_access_token
Response
200
Body
- id
integer
Example: 1
- label
string
Example: To Do
401
Body
- unauthorised
Response Example
{
"message": "Note types fetched successfully",
"data": [
{
"id": 5,
"label": "To Do"
},
{
"id": 6,
"label": "Reminder"
},
{
"id": 7,
"label": "Test "
},
{
"id": 8,
"label": "Test 2"
}
]
}