GET
/
audit_logs
curl --request GET \
  --url https://api.vidbeo.com/v2/audit_logs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "id": "ca6286a0-d873-4d3e-a150-32478fe1d8f2",
      "actor_type": "user",
      "actor_id": "abcde12345abcde12345a",
      "entity_type": "videos",
      "entity_id": "abcde12345abcde12345a",
      "action_type": "create",
      "action_data": "<string>",
      "action_ip": "1.2.3.4",
      "action_time": "2024-01-01T00:00:00.000Z"
    }
  ],
  "links": {},
  "errors": []
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default: 25

The maximum number of results to return

cursor
string

A cursor to fetch the next page of results

Response

200 - application/json
success
boolean
required
result
object[]
required
links
object
required
errors
object[]
required