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": "a6da8502-3b97-4a89-ba36-08aed622476a",
"type": "authorizations",
"attributes": {
"authorizable_id": "33a31ab2-3070-42fd-a270-00f8cc966b59",
"authorizable_type": "Dashboard",
"grantee_id": "53",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-10-23T10:34:41.514-07:00",
"created_at": "2025-10-23T10:34:41.514-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": "a6da8502-3b97-4a89-ba36-08aed622476a",
"type": "authorizations",
"attributes": {
"authorizable_id": "33a31ab2-3070-42fd-a270-00f8cc966b59",
"authorizable_type": "Dashboard",
"grantee_id": "53",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-10-23T10:34:41.514-07:00",
"created_at": "2025-10-23T10:34:41.514-07:00"
}
}
}