Skip to main content
GET
https://{teamSlug}.teams.auth0.com
/
api
/
activity
/
logs
Retrieve team activity logs
curl --request GET \
  --url https://{teamSlug}.teams.auth0.com/api/activity/logs \
  --header 'Authorization: Bearer <token>'
{
  "logs": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "Success",
      "created_at": "2023-11-07T05:31:56Z",
      "current_event": "<string>",
      "actor": {
        "id": "<string>",
        "type": "user",
        "name": "<string>",
        "picture": "<string>",
        "isMember": true,
        "teamRole": "<string>"
      },
      "type": "Team Member",
      "details": {},
      "ip": "<string>",
      "hostname": "<string>",
      "user_agent": "<string>",
      "version": "<string>"
    }
  ],
  "next": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs-dev.auth0-mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

take
integer
default:50

Maximum number of items to return per page. Defaults to 50. Maximum 50

Required range: 1 <= x <= 50
from
string

Checkpoint cursor for pagination; use the 'next' value from a previous response to fetch the next page

since
string<date-time>

Return logs created at or after this ISO 8601 date format

until
string<date-time>

Return logs created before this ISO 8601 timestamp

type
enum<string>

Exact match: filter by event type Event type identifier

Available options:
Team Member,
Team Invitation,
Security Policy,
Team Settings,
Token Activity,
Tenant Activity,
Tenant Member,
Team Activity
status
enum<string>

Exact match: filter by status Execution status of the event

Available options:
Success,
Failure

Response

A paginated list of audit activity

logs
object[]
required

List of activity log entries

next
string

Opaque cursor for next page; not sent if no more results