Tenants
Get tenant
Get tenant by your internal id used to identify the tenant
GET
/v1/tenants/{identifier}
Authorization*
curl --request GET \
--url https://api.novu.co/v1/tenants/{identifier} \
--header 'Authorization: ApiKey'
{
"data": {
"_environmentId": "string",
"_id": "string",
"createdAt": "string",
"data": "object",
"identifier": "string",
"name": "string",
"updatedAt": "string"
}
}
Please ensure there is a space between ApiKey
and your Api key.
E.g ApiKey 18d2e625f05d80e
Path Parameters
identifierrequired
string
Response
200 - application/json
data
object
curl --request GET \
--url https://api.novu.co/v1/tenants/{identifier} \
--header 'Authorization: ApiKey'
{
"data": {
"_environmentId": "string",
"_id": "string",
"createdAt": "string",
"data": "object",
"identifier": "string",
"name": "string",
"updatedAt": "string"
}
}