Skip to main content
POST
/
v1
/
authorizations
Creates an authorization
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": "6f4f7970-6c5f-43b6-a84d-3d5c6cbe1817",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "1027445e-5b43-4add-8af0-cfc36000359d",
      "authorizable_type": "Dashboard",
      "grantee_id": "81",
      "grantee_type": "User",
      "permissions": [
        "read"
      ],
      "updated_at": "2025-11-17T20:18:46.810-08:00",
      "created_at": "2025-11-17T20:18:46.810-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

authorization created

data
object
required