Tenants
Update tenant
Update tenant by your internal id used to identify the tenant
PATCH
/
v1
/
tenants
/
{identifier}
Authorization
Path
Body
curl --request PATCH \
--url https://api.novu.co/v1/tenants/{identifier} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json'
{
"data": {
"_environmentId": "string",
"_id": "string",
"createdAt": "string",
"data": "object",
"identifier": "string",
"name": "string",
"updatedAt": "string"
}
}
Enter your API key in the Authorization
field like the example shown below:
E.g ApiKey 18d2e625f05d80e
Authorizations
Authorizationheaderrequired
string
Path Parameters
identifierrequired
string
Body
application/json
data
object
identifier
string
name
string
Response
200 - application/json
data
object
Was this page helpful?
curl --request PATCH \
--url https://api.novu.co/v1/tenants/{identifier} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json'
{
"data": {
"_environmentId": "string",
"_id": "string",
"createdAt": "string",
"data": "object",
"identifier": "string",
"name": "string",
"updatedAt": "string"
}
}