Skip to main content
GET
/
v3beta1
/
enterprise
/
organizations
/
{org_id}
/
audit-logs
Get Organization Audit Logs
curl --request GET \
  --url https://api.devin.ai/v3beta1/enterprise/organizations/{org_id}/audit-logs
{
  "items": [
    {
      "audit_log_id": "<string>",
      "action": "login",
      "created_at": 123,
      "org_id": "<string>",
      "user_id": "<string>",
      "service_user_id": "<string>"
    }
  ],
  "end_cursor": "<string>",
  "has_next_page": false,
  "total": 123
}

Path Parameters

org_id
string | null
required

Query Parameters

qs
object
required
enterprise_id
string | null

Response

Successful Response

items
AuditLogResponse · object[]
required
end_cursor
string | null

Cursor to fetch the next page, or None if this is the last page.

has_next_page
boolean
default:false

Whether there are more items available after this page.

total
integer | null

Optional total count (can be omitted for performance).