Skip to main content
PUT
/
firework
/
v2
/
tenants
/
{tenant_id}
cURL
curl --request PUT \
  --url https://api.flare.io/firework/v2/tenants/{tenant_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "global_search_calls_limit": 123,
  "industry": "global",
  "name": "<string>",
  "number_of_employees": 123,
  "prevent_global_search": true
}'
{
  "items": {},
  "next": "<string>"
}

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
description
string
required

The Tenant's purpose / description

industry
enum<string>
required

The Tenant's industry

Available options:
global,
transport,
education,
energy,
finance,
healthcare,
manufacturing,
retail,
software,
telecommunication
Example:

"global"

name
string
required

The Tenant display name

number_of_employees
integer
required

The number of employees for the tenant

global_search_calls_limit
integer

The number of API calls allowed for the tenant.

Response

200 - application/json

Success

items
object
next
string