1. Docs
  2. API Reference
  3. List recent audit-log export jobs

List recent audit-log export jobs

GET/portal/v1/accounts/{accountSlug}/audit-log/identities/export

Returns the Account's most recent export jobs on this surface, newest first, with their current status. Completed jobs are retrieved individually to obtain a fresh download URL.

Authentication

Bearer TokenAuthorization

JWT access token. Never send alongside X-API-Key: a request carrying both is refused.

Requires capability audit.viewSecurity

View the account-wide audit log. Granted through an administrator role in the Admin Workspace; a valid token without it is refused with 403.

Responses

application/json

  • itemsExportJobDto[]*

application/json

  • errorApiErrorBodyDto*

application/json

  • errorApiErrorBodyDto*

Errors

When the request can't be completed, the response body includes a stable error code you can branch on.

403account.capability_requiredForbidden
When it happens

The signed-in user's administrator roles do not grant the capability this endpoint requires.

Remediation

Ask an account administrator to grant a role carrying the capability named in the Authentication section, then retry.

Returned object

Request
curl -X GET "https://auth.canopy-io.com/portal/v1/accounts/{accountSlug}/audit-log/identities/export" \
  -H "Authorization: Bearer $CANOPY_TOKEN"
Response
{
  "items": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "status": "pending",
      "surface": "admin",
      "format": "csv",
      "application_id": "00000000-0000-0000-0000-000000000000",
      "environment_id": "00000000-0000-0000-0000-000000000000",
      "row_count": 0,
      "error": "string",
      "created_at": "2026-04-20T12:00:00.000Z",
      "completed_at": "2026-04-20T12:00:00.000Z",
      "expires_at": "2026-04-20T12:00:00.000Z",
      "download_url": "string"
    }
  ]
}
Related endpoints
GETLive-tail identity audit-log events (SSE)
GETQuery identity audit-log events
POSTCreate an identity audit-log export job (CSV / NDJSON)
GETGet an audit-log export job
DELETEDelete an audit-log export job
GETGet an identity audit-log row with related events
Was this page helpful?

Tell us how we can improve this guide.