Tenant - Updates the export type for a specific asset in a tenant
Authorizations
Query parameters
versionstringOptionalDefault:
The requested API version
1.0Body
Represents a request to update the export mapping for a specific asset within a tenant.
tenantIdstring · uuidOptional
Gets or sets the unique identifier for the tenant.
assetIdstring · uuidOptional
Gets or sets the unique identifier for the asset.
exportTypestring | nullableOptional
Gets or sets the type of export to be performed.
paginatedAssetIdstring · uuid | nullableOptional
Gets or sets the unique identifier for the paginated asset. Required in case of Paginated visual export (type 2) !:ExportMethodEnum
Responses
200
Success: Export type updated successfully.
401
Unauthorized
404
Not Found: Indicates that the requested tenant or asset does not exist.
500
Internal Server Error: An unexpected error occurred or a server timeout.
post
/tenants/assets/exportTypePOST /tenants/assets/exportType HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 178
{
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"exportType": "text",
"paginatedAssetId": "123e4567-e89b-12d3-a456-426614174000"
}{
"message": "Success Message",
"statusCode": 200
}Last updated