Skip to main content

TenantServicesConsumptionListResponseDto

Paginated response DTO containing tenant services consumption data.

partnerIdstringrequired

The unique identifier of the partner

fromdaterequired

The start date of the range. Format YYYY-MM-DD. Inclusive

todaterequired

The end date of the range. Format YYYY-MM-DD. Inclusive

currentPageint32required

The current page number

hasNextPagebooleanrequired

Whether there are more pages available

tenants object[]required

The list of tenant services consumption data

  • Array [
  • regionKauntRegionEnumrequired

    Possible values: [EU1_FRANCE, US1_ARIZONA]

    tenantIduuidrequired

    The unique identifier of the tenant

    tenantNamestringrequired

    The name of the tenant

    totalProposalsint64required

    The total number of invoice coding proposals created

    formRecognizerPagesConsumedint64required

    The number of Azure Form Recognizer pages consumed

    documentAI objectrequired
    pagesConsumedFromApiint64required

    The number of pages consumed from API requests

    pagesConsumedFromPostedInvoiceRequestsint64required

    The number of pages consumed from posted invoice requests

    pagesConsumedFromInvoiceCodingProposalRequestsint64required

    The number of pages consumed from invoice coding proposal requests

    totalPagesConsumedint64required

    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
    }
    }
    ]
    }