Creates a new authorization from provided data
curl --request POST \
--url https://api.rootly.com/v1/authorizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "authorizations",
"attributes": {
"authorizable_id": "<string>",
"authorizable_type": "Dashboard",
"grantee_id": "<string>",
"grantee_type": "User",
"permissions": [
"read"
]
}
}
}
'{
"data": {
"id": "9c37e7df-64b6-4108-98f3-4e6b77feeed4",
"type": "authorizations",
"attributes": {
"authorizable_id": "cdc9e5eb-49b3-42f0-a36b-ea9e45b14b62",
"authorizable_type": "Dashboard",
"grantee_id": "81",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-12-08T08:23:57.641-08:00",
"created_at": "2025-12-08T08:23:57.641-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
authorizations Show child attributes
The id of the resource being accessed.
The type of resource being accessed.
Dashboard The resource id granted access.
The type of resource granted access.
User, Team read, update, authorize, destroy authorization created
Show child attributes
Unique ID of the authorization
authorizations Show child attributes
The id of the resource being accessed.
The type of resource being accessed.
Dashboard The resource id granted access.
The type of resource granted access.
User, Team read, update, authorize, destroy Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/authorizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "authorizations",
"attributes": {
"authorizable_id": "<string>",
"authorizable_type": "Dashboard",
"grantee_id": "<string>",
"grantee_type": "User",
"permissions": [
"read"
]
}
}
}
'{
"data": {
"id": "9c37e7df-64b6-4108-98f3-4e6b77feeed4",
"type": "authorizations",
"attributes": {
"authorizable_id": "cdc9e5eb-49b3-42f0-a36b-ea9e45b14b62",
"authorizable_type": "Dashboard",
"grantee_id": "81",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-12-08T08:23:57.641-08:00",
"created_at": "2025-12-08T08:23:57.641-08:00"
}
}
}