Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
Authorizations
Delete an authorization
Authorizations
Delete an authorization
Delete a specific authorization by id
DELETE
/
v1
/
authorizations
/
{id}
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "f13db9ca-867c-49da-8c52-e1a7b2708e8f",
"type": "authorizations",
"attributes": {
"authorizable_id": "46da1933-fd5e-4ec0-b0a8-545aa9c6d0fa",
"authorizable_type": "Dashboard",
"grantee_id": "46",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-03-13T11:59:12.641-07:00",
"created_at": "2025-03-13T11:59:12.641-07:00"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/vnd.api+json
authorization deleted
Unique ID of the authorization
Available options:
authorizations
The id of the resource being accessed.
The type of resource being accessed.
Available options:
Dashboard
The resource id granted access.
The type of resource granted access.
Available options:
User
, Team
Available options:
read
, update
, authorize
, destroy
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "f13db9ca-867c-49da-8c52-e1a7b2708e8f",
"type": "authorizations",
"attributes": {
"authorizable_id": "46da1933-fd5e-4ec0-b0a8-545aa9c6d0fa",
"authorizable_type": "Dashboard",
"grantee_id": "46",
"grantee_type": "Team",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-03-13T11:59:12.641-07:00",
"created_at": "2025-03-13T11:59:12.641-07:00"
}
}
}