Skip to main content

Update a Tenant

Parameters#

NameDescription
name (string)
optional
The Tenant's name

Request#

PUT /tenants/:id
curl --location -g --request PUT '/{{base-api-url}}/tenants/:id' \
--header 'Authorization: Bearer {{your-api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Your updated Tenant\'s name"
}'

Returns#

Returns a Tenant object if update succeeded.

Returns error otherwise.