Returns an audit log of events from an organization one page at a time.
string
Requiredstring
string
string
string
string
array<string>
array<string>
array<string>
string
integer
Successful operation
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'
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>"
}
}
Returns information about a single event by ID.
string
Requiredstring
RequiredSuccessful operation
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'
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>"
}
}
}
Returns information localized event actions
string
RequiredSuccessful operation
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'
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: