Troubleshooting
Troubleshooting of PBX system.
Retrieve a collection of audit logs.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
OK
application/json
countinteger · int64OptionalExample:
Total number of resource.
1004XX
Error
get/audit_logs
GET /api/audit_logs HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"created_at": null,
"source": null,
"ip": null,
"action": null,
"object_type": null,
"user_name": null,
"object_name": null,
"old_state": null,
"new_state": null
}
]
}Retrieve a collection of event logs.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
OK
application/json
countinteger · int64OptionalExample:
Total number of resource.
1004XX
Error
get/event_logs
GET /api/event_logs HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"items": [
{
"id": null,
"created_at": null,
"level": null,
"source": null,
"message": null
}
]
}Last updated
Was this helpful?