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": "8779a580-95a8-44c5-b521-ac86aab989a3",
"type": "authorizations",
"attributes": {
"authorizable_id": "ffeb9851-02cf-4f91-ad99-da054590582e",
"authorizable_type": "Dashboard",
"grantee_id": "78",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-10-27T23:42:41.709-07:00",
"created_at": "2025-10-27T23:42:41.709-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": "8779a580-95a8-44c5-b521-ac86aab989a3",
"type": "authorizations",
"attributes": {
"authorizable_id": "ffeb9851-02cf-4f91-ad99-da054590582e",
"authorizable_type": "Dashboard",
"grantee_id": "78",
"grantee_type": "User",
"permissions": [
"read"
],
"updated_at": "2025-10-27T23:42:41.709-07:00",
"created_at": "2025-10-27T23:42:41.709-07:00"
}
}
}