Update Tenant
PUT /api/v1/tenants/:tenantId
Description
Update tenant information.
Request
-
Authentication:
-
Type: Bearer Token
-
Token:
{{bearerToken}}(Replace with the actual bearer token)
-
-
URL:
-
Raw URL:
/api/v1/tenants/:tenantId -
Host:
-
Path:
/api/v1/tenants/:tenantId -
Variables:
- tenantId: (Required)
-
Response:
- Status: OK (200)
/api/v1/tenants/:tenantId
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"userId": "<string>",
"aboutMe": "<string>",
"actionBy": "<string>",
"address": "<string>",
"name": "<string>",
"photo": "<string>",
"phone": "<string>",
"ipAddresses": [
"<string>",
"<string>"
],
"domains": [
"<string>",
"<string>"
]
}
🔑 Authentication bearer
| Param | value | Type |
|---|---|---|
| token | bearerToken | string |
Response: 200
LANGUAGE
CURL REQUEST
curl --request PUT \
--url /api/v1/tenants/:tenantId \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!