TenantServicesConsumptionListResponseDto
Paginated response DTO containing tenant services consumption data.
partnerIdstringrequired
The unique identifier of the partner
fromstring<date>required
The start date of the range. Format YYYY-MM-DD. Inclusive
tostring<date>required
The end date of the range. Format YYYY-MM-DD. Inclusive
currentPageinteger<int32>required
The current page number
hasNextPagebooleanrequired
Whether there are more pages available
tenants object[]required
The list of tenant services consumption data
Array [
regionKauntRegionEnum (string)required
Possible values: [EU1_FRANCE, US1_ARIZONA]
tenantIdstring<uuid>required
The unique identifier of the tenant
tenantNamestringrequired
The name of the tenant
totalProposalsinteger<int64>required
The total number of invoice coding proposals created
formRecognizerPagesConsumedinteger<int64>required
The number of Azure Form Recognizer pages consumed
documentAI objectrequired
pagesConsumedFromApiinteger<int64>required
The number of pages consumed from API requests
pagesConsumedFromPostedInvoiceRequestsinteger<int64>required
The number of pages consumed from posted invoice requests
pagesConsumedFromInvoiceCodingProposalRequestsinteger<int64>required
The number of pages consumed from invoice coding proposal requests
totalPagesConsumedinteger<int64>required
Total pages consumed across all sources
]
TenantServicesConsumptionListResponseDto
{
"partnerId": "string",
"from": "2024-07-29",
"to": "2024-07-29",
"currentPage": 0,
"hasNextPage": true,
"tenants": [
{
"region": "EU1_FRANCE",
"tenantId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tenantName": "string",
"totalProposals": 0,
"formRecognizerPagesConsumed": 0,
"documentAI": {
"pagesConsumedFromApi": 0,
"pagesConsumedFromPostedInvoiceRequests": 0,
"pagesConsumedFromInvoiceCodingProposalRequests": 0,
"totalPagesConsumed": 0
}
}
]
}