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": "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"
    }
  }
}

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