Skip to main content
POST
/
v2
/
TenantUpdate
Update tenant information
curl --request POST \
  --url http://localhost:3000/v2/TenantUpdate \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "tenantid": 123,
  "tenantname": "<string>",
  "tenantorg": "<string>",
  "email": "<string>",
  "request_metadata": {}
}
'
{
  "status": "ok"
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
tenantid
integer
required

ID of the tenant

tenantname
string

New name of the tenant

tenantorg
string

New organization name

email
string

New email address for tenant contact

request_metadata
object

Additional metadata for the request

Response

200 - application/json

Tenant updated successfully

status
string
Example:

"ok"