| Name | Type | Example | Description |
|---|---|---|---|
| id | integer |
1234 | The unique id of the category |
| name | string |
Proposal | The name of the category |
curl "https://api.pipelinedeals.com/api/v3/admin/note_categories.json?api_key=abc1234"
200
{
"entries": [
{
"id": 1,
"name": "Phone Call"
},
{
"id": 2,
"name": "Voicemail"
},
{
"id": 3,
"name": "Appointment"
},
{
"id": 4,
"name": "Cold Call"
},
{
"id": 5,
"name": "Concerns"
}
],
"pagination": {
"page": 1,
"total": 5,
"per_page": 200
}
}