curl --request POST \
--url https://events.1password.com/api/v2/auditevents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK"
}
'{
"items": [
{
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"timestamp": "2020-06-11T16:32:50-03:00",
"actor_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"actor_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"actor_account_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"account_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"object_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"object_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"aux_id": 123,
"aux_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"aux_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"aux_info": "<string>",
"session": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"login_time": "2020-06-11T16:32:50-03:00",
"device_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"ip": "13.227.95.22"
},
"location": {
"country": "CA",
"region": "Ontario",
"city": "Toronto",
"longitude": 43.64,
"latitude": -79.433
}
}
],
"cursor": "aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK",
"has_more": true
}Retrieves audit events for actions performed by team members within a 1Password account
This endpoint requires your JSON Web Token to have the auditevents feature.
curl --request POST \
--url https://events.1password.com/api/v2/auditevents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK"
}
'{
"items": [
{
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"timestamp": "2020-06-11T16:32:50-03:00",
"actor_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"actor_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"actor_account_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"account_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"object_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"object_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"aux_id": 123,
"aux_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"aux_details": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"name": "Jack O'Neill",
"email": "jsmith@example.com"
},
"aux_info": "<string>",
"session": {
"uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"login_time": "2020-06-11T16:32:50-03:00",
"device_uuid": "56YE2TYN2VFYRLNSHKPW5NVT5E",
"ip": "13.227.95.22"
},
"location": {
"country": "CA",
"region": "Ontario",
"city": "Toronto",
"longitude": 43.64,
"latitude": -79.433
}
}
],
"cursor": "aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK",
"has_more": true
}Documentation Index
Fetch the complete documentation index at: https://www.1password.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
A JWT SA token issued to this service
Body
- Option 1
- Option 2
Cursor
Cursor to fetch more data if available or continue the polling process if required
"aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK"
Response
Audit events response object
An object wrapping cursor properties and a list of audit events
Show child attributes
Show child attributes
Cursor to fetch more data if available or continue the polling process if required
"aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK"
Whether there may still be more data to fetch using the returned cursor. If true, the subsequent request could still be empty.
Was this page helpful?