• Orgs
  • Users
  • Groups
  • Domains
  • Events
  • Policies
  • Directory
  • Workspaces
Cloud
Organizations REST API / Reference / REST API

Events

Postman Collection
OpenAPI
GET

Get an audit log of events

Returns an audit log of events from an organization one page at a time.

Request

Path parameters

orgId

string

Required

Query parameters

cursor

string

q

string

from

string

to

string

action

string

actor

array<string>

ip

array<string>

Responses

Successful operation

application/json

EventPage
GET/v1/orgs/{orgId}/events
1 2 3 4 curl --request GET \ --url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/events' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 { "data": [ { "id": "<string>", "type": "events", "attributes": { "time": "<string>", "action": "<string>", "actor": { "id": "<string>", "name": "<string>", "email": "<string>", "auth": { "authType": "container-token", "tokenId": "<string>", "tokenLabel": "<string>" }, "links": { "self": "<string>" } }, "context": [ { "id": "<string>", "type": "<string>", "attributes": {}, "links": { "self": "<string>", "alt": "<string>" } } ], "container": [ { "id": "<string>", "type": "<string>", "attributes": {}, "links": { "self": "<string>", "alt": "<string>" } } ], "location": { "ip": "<string>", "geo": "<string>", "countryName": "<string>", "regionName": "<string>", "city": "<string>" } }, "links": { "self": "<string>" }, "message": { "content": "<string>", "format": "<string>" } } ], "meta": { "next": "<string>", "page_size": 25 }, "links": { "self": "<string>", "prev": "<string>", "next": "<string>" } }
GET

Get an event by ID

Returns information about a single event by ID.

Request

Path parameters

orgId

string

Required
eventId

string

Required

Responses

Successful operation

application/json

Event
GET/v1/orgs/{orgId}/events/{eventId}
1 2 3 4 curl --request GET \ --url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/events/{eventId}' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 { "data": { "id": "<string>", "type": "events", "attributes": { "time": "<string>", "action": "<string>", "actor": { "id": "<string>", "name": "<string>", "email": "<string>", "auth": { "authType": "container-token", "tokenId": "<string>", "tokenLabel": "<string>" }, "links": { "self": "<string>" } }, "context": [ { "id": "<string>", "type": "<string>", "attributes": {}, "links": { "self": "<string>", "alt": "<string>" } } ], "container": [ { "id": "<string>", "type": "<string>", "attributes": {}, "links": { "self": "<string>", "alt": "<string>" } } ], "location": { "ip": "<string>", "geo": "<string>", "countryName": "<string>", "regionName": "<string>", "city": "<string>" } }, "links": { "self": "<string>" }, "message": { "content": "<string>", "format": "<string>" } } }
GET

Get list of event actions

Returns information localized event actions

Request

Path parameters

orgId

string

Required

Responses

Successful operation

application/json

EventActions
GET/v1/orgs/{orgId}/event-actions
1 2 3 4 curl --request GET \ --url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/event-actions' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 { "data": [ { "id": "<string>", "type": "<string>", "attributes": { "displayName": "<string>", "groupDisplayName": "<string>" } } ] }

Rate this page: