Delete a specific authorization by id
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "fc72e28a-2df2-4bbf-8525-1d3b7bde3484",
"type": "authorizations",
"attributes": {
"authorizable_id": "4c8cde38-79b8-4d5c-998b-59c43eeed9cc",
"authorizable_type": "Dashboard",
"grantee_id": "48",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-21T17:46:33.393-07:00",
"created_at": "2025-08-21T17:46:33.393-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": "fc72e28a-2df2-4bbf-8525-1d3b7bde3484",
"type": "authorizations",
"attributes": {
"authorizable_id": "4c8cde38-79b8-4d5c-998b-59c43eeed9cc",
"authorizable_type": "Dashboard",
"grantee_id": "48",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-08-21T17:46:33.393-07:00",
"created_at": "2025-08-21T17:46:33.393-07:00"
}
}
}