For the complete documentation index, see llms.txt. This page is also available as Markdown.

Troubleshooting

Troubleshooting of PBX system.

List audit logs

get

Retrieve a collection of audit logs.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

OK

application/json
countinteger · int64Optional

Total number of resource.

Example: 100
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
    }
  ]
}

List event logs

get

Retrieve a collection of event logs.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

OK

application/json
countinteger · int64Optional

Total number of resource.

Example: 100
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?