Skip to main content
Get note-types
GET
GET
http://api.atzcrm.com/v1/note-types

Retrieve the details of all note-types.

Request

GET

GET /v1/note-types

Headers

  • Authorization: Bearer your_access_token

Response

200

Body

  • idinteger

    Example: 1

  • labelstring

    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"
}
]
}