Tenant - Update tenant export config
Authorizations
HTTPRequired
Please enter a valid token
Query parameters
versionstringOptionalDefault:
The requested API version
1.0Body
Represents a request to update the tenant level export type configuration for a specific tenant.
tenantIdstring · uuidOptional
Gets or sets the unique identifier for the tenant.
exportTypestring | nullableOptional
Gets or sets the type of export to be set.
Responses
200
Export type updated successfully.
401
Unauthorized: Invalid credentials or missing/invalid authentication token.
404
Not Found: The requested tenant does not exist.
500
Internal Server Error: An unexpected error occurred or a server timeout.
post
/tenants/updateTenantExportConfigPOST /tenants/updateTenantExportConfig HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 71
{
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"exportType": "text"
}{
"message": "Success Message",
"statusCode": 200
}Last updated