Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
authorization deleted
Delete a specific authorization by id
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "67bcfb88-c1ba-404d-adae-dce18d7ff9ae",
"type": "authorizations",
"attributes": {
"authorizable_id": "649a9355-5af7-417a-b63f-976675ed9cb3",
"authorizable_type": "Dashboard",
"grantee_id": "90",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-10-07T14:09:00.756-07:00",
"created_at": "2025-10-07T14:09:00.756-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
authorization deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "67bcfb88-c1ba-404d-adae-dce18d7ff9ae",
"type": "authorizations",
"attributes": {
"authorizable_id": "649a9355-5af7-417a-b63f-976675ed9cb3",
"authorizable_type": "Dashboard",
"grantee_id": "90",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-10-07T14:09:00.756-07:00",
"created_at": "2025-10-07T14:09:00.756-07:00"
}
}
}