Rate this page:
Events APIs
GET /admin/v1/orgs/{orgId}/events
Returns an audit log of events from an organization one page at a time.
string
ID of the org
string
Sets the starting point for the page of results to return
string
Single query term for searching events.
string
The earliest date and time of the event represented as a UNIX epoch time.
string
The latest date and time of the event represented as a UNIX epoch time.
string
A query filter that returns events of a specific action type.
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'
Successful operation
Content type | Value |
---|---|
application/json |
GET /admin/v1/orgs/{orgId}/events/{eventId}
Returns information about a single event by ID.
string
ID of the organization to query
string
ID of the event to return
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'
Successful operation
Content type | Value |
---|---|
application/json |
GET /admin/v1/orgs/{orgId}/event-actions
Returns information localized event actions
string
ID of the organization to query
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'
Successful operation
Content type | Value |
---|---|
application/json |
Rate this page: