Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List audits
curl --request GET \
--url https://api.rootly.com/v1/audits \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "audits",
"attributes": {
"event": "<string>",
"item_type": "ApiKey",
"object": {},
"object_changes": {},
"user_id": 123,
"created_at": "<string>",
"item_id": "<string>",
"id": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/audits \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "audits",
"attributes": {
"event": "<string>",
"item_type": "ApiKey",
"object": {},
"object_changes": {},
"user_id": 123,
"created_at": "<string>",
"item_id": "<string>",
"id": 123
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}