Delete a specific authorization by id
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "eb3d37bf-37ad-4ca7-8fa0-7136ff10ef54",
"type": "authorizations",
"attributes": {
"authorizable_id": "96425e68-de44-48ac-9d2d-1cd2abb5189d",
"authorizable_type": "Dashboard",
"grantee_id": "48",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-01T09:44:58.289-07:00",
"created_at": "2025-08-01T09:44:58.289-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
authorization deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "eb3d37bf-37ad-4ca7-8fa0-7136ff10ef54",
"type": "authorizations",
"attributes": {
"authorizable_id": "96425e68-de44-48ac-9d2d-1cd2abb5189d",
"authorizable_type": "Dashboard",
"grantee_id": "48",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-01T09:44:58.289-07:00",
"created_at": "2025-08-01T09:44:58.289-07:00"
}
}
}