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": "4aa5daba-0300-47ef-a70f-454a471f6e38",
"type": "authorizations",
"attributes": {
"authorizable_id": "6a550a92-c774-48f7-aeff-ed146f55f012",
"authorizable_type": "Dashboard",
"grantee_id": "51",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-16T17:10:21.752-07:00",
"created_at": "2025-09-16T17:10:21.752-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": "4aa5daba-0300-47ef-a70f-454a471f6e38",
"type": "authorizations",
"attributes": {
"authorizable_id": "6a550a92-c774-48f7-aeff-ed146f55f012",
"authorizable_type": "Dashboard",
"grantee_id": "51",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-09-16T17:10:21.752-07:00",
"created_at": "2025-09-16T17:10:21.752-07:00"
}
}
}