Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/vnd.api+json
Response
authorization created
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": "7aca644e-ea95-49fc-8ac7-d9f055331401",
"type": "authorizations",
"attributes": {
"authorizable_id": "2d13ef74-2a33-4039-bafa-02fe3955d64c",
"authorizable_type": "Dashboard",
"grantee_id": "79",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-10-28T14:21:39.784-07:00",
"created_at": "2025-10-28T14:21:39.784-07:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
authorization created
Show child attributes
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": "7aca644e-ea95-49fc-8ac7-d9f055331401",
"type": "authorizations",
"attributes": {
"authorizable_id": "2d13ef74-2a33-4039-bafa-02fe3955d64c",
"authorizable_type": "Dashboard",
"grantee_id": "79",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-10-28T14:21:39.784-07:00",
"created_at": "2025-10-28T14:21:39.784-07:00"
}
}
}