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": "e81d195a-e39a-4168-869c-1f90ff1a425e",
    "type": "authorizations",
    "attributes": {
      "authorizable_id": "070766a3-878b-4840-bd61-7d18e3426468",
      "authorizable_type": "Dashboard",
      "grantee_id": "35",
      "grantee_type": "User",
      "permissions": [
        "read"
      ],
      "updated_at": "2025-06-18T19:30:29.466-07:00",
      "created_at": "2025-06-18T19:30:29.466-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.