Skip to main content

TenantResponseDtoViewPage

A paginated view of a collection of items.

totalCountinteger<int32>

Number of entries in the returned resultset

Example: 5
previousPagestringnullable

URL of the previous page

Example: https://api.kaunt.com/v1/resources?page=1
nextPagestringnullable

URL of the next page

Example: https://api.kaunt.com/v1/resources?page=3
currentPageinteger<int32>

Index of the current page

Example: 2
entries object[]nullable

Collection of the response DTO model instances.

  • Array [
  • namestringrequired

    Name of the tenant

    Example: KauntTenant
    idstringrequired

    UUID of the tenant

    Example: 75de5c95-4a0c-4fee-8811-434a9ecd7e79
    regionKauntRegionEnum (string)required

    Possible values: [EU1_FRANCE, US1_ARIZONA]

    markedForDeletionboolean

    Indicates whether the tenant is marked for deletion. This property is used to track tenants that are scheduled for removal from the system. When set to true, it signifies that the tenant is in the process of being deleted and should not be used for any further operations.

    Example: false
    disabledModelsstring[]

    List of disabled models for the tenant.

  • ]
  • TenantResponseDtoViewPage
    {
    "totalCount": 5,
    "previousPage": "https://api.kaunt.com/v1/resources?page=1",
    "nextPage": "https://api.kaunt.com/v1/resources?page=3",
    "currentPage": 2,
    "entries": [
    {
    "name": "KauntTenant",
    "id": "75de5c95-4a0c-4fee-8811-434a9ecd7e79",
    "region": "EU1_FRANCE",
    "markedForDeletion": false,
    "disabledModels": [
    "string"
    ]
    }
    ]
    }