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
Retrieves an authorization
Authorizations
Retrieves an authorization
Retrieves a specific authorization by id
GET
/
v1
/
authorizations
/
{id}
curl --request GET \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "60beff40-33f3-40b1-9ac8-922065134162",
"type": "authorizations",
"attributes": {
"authorizable_id": "da2336bc-ef62-4bb3-b3dd-25c3966b7239",
"authorizable_type": "Dashboard",
"grantee_id": "36",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-03-13T11:59:07.698-07:00",
"created_at": "2025-03-13T11:59:07.698-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 found
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 GET \
--url https://api.rootly.com/v1/authorizations/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "60beff40-33f3-40b1-9ac8-922065134162",
"type": "authorizations",
"attributes": {
"authorizable_id": "da2336bc-ef62-4bb3-b3dd-25c3966b7239",
"authorizable_type": "Dashboard",
"grantee_id": "36",
"grantee_type": "User",
"permissions": [
"read",
"update",
"authorize",
"destroy"
],
"updated_at": "2025-03-13T11:59:07.698-07:00",
"created_at": "2025-03-13T11:59:07.698-07:00"
}
}
}