POST
/
tenants
/
{tenant_id}
/
users
curl --request POST \
  --url https://api.flare.io/firework/v2/tenants/{tenant_id}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "users": [
    {
      "is_readonly": true,
      "user_id": 123
    }
  ]
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

tenant_id
integer
required

Body

application/json
users
object[]

User given access to a tenant.