URL: v3/api/log-category-list
Method: GET
Description : Gets the list of log categories
Parameters:
| Parameter | Type | Optional/Required | Description |
| search_query | string | Optional | String that has to be searched |
| limit | string | Optional | Count of results that are required |
Response:
{
"success":true,
"data":{
"log_categories":
[{
"id":1,
"name":"ticket-create"
},
{
"id":2,
"name":"user-create"
},
{
"id":3,
"name":"mail-fetch"
},
{
"id":4,
"name":"mail-send"
},
{
"id":5,
"name":"ticket-update"
},
{
"id":6,
"name":"ldap"
},
{
"id":7,
"name":"default"
}]
}
}