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
Update an authorization
Authorizations
Update an authorization
Update a specific authorization by id
PUT
/
v1
/
authorizations
/
{id}
curl --request PUT \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "6ac6c91c-cf8f-4f94-a795-ffb2c1c0235c",
"type": "authorizations",
"attributes": {
"authorizable_id": "a3e7f417-60dc-4e10-bdeb-a695185a5998",
"authorizable_type": "Dashboard",
"grantee_id": "40",
"grantee_type": "User",
"permissions": [
"read",
"update"
],
"updated_at": "2025-03-13T11:59:10.347-07:00",
"created_at": "2025-03-13T11:59:10.166-07:00"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
200
application/vnd.api+json
authorization updated
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 PUT \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/vnd.api+json'
{
"data": {
"id": "6ac6c91c-cf8f-4f94-a795-ffb2c1c0235c",
"type": "authorizations",
"attributes": {
"authorizable_id": "a3e7f417-60dc-4e10-bdeb-a695185a5998",
"authorizable_type": "Dashboard",
"grantee_id": "40",
"grantee_type": "User",
"permissions": [
"read",
"update"
],
"updated_at": "2025-03-13T11:59:10.347-07:00",
"created_at": "2025-03-13T11:59:10.166-07:00"
}
}
}