POST
/
v1
/
authorizations
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": "3b2a526d-9953-4d75-ba24-c6d8e9db7d4f",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "9f230668-e5af-4364-9fa6-6a7d6b600a7a",
      "authorizable_type": "Dashboard",
      "grantee_id": "35",
      "grantee_type": "User",
      "permissions": [
        "read"
      ],
      "updated_at": "2025-06-20T11:56:32.882-07:00",
      "created_at": "2025-06-20T11:56:32.882-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

Response

201
application/vnd.api+json

authorization created

The response is of type object.