GET api/deposit/schemes/{id}/groupings?pageSize={pageSize}&pageNumber={pageNumber}

Get Scheme Groupings. Processes this deposit API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique identifier of the requested resource.

integer

Required

pageSize

The page size value supplied with the request.

integer

Default value is 25

pageNumber

The page number value supplied with the request.

integer

Default value is 1

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

PagedCollectionDataContractOfDepositGroupingDataContract
NameDescriptionTypeAdditional information
TotalCount

The total count value.

integer

None.

CurrentCount

The current count value.

integer

None.

PageSize

The page size value.

integer

None.

PageNumber

The page number value.

integer

None.

Collection

The collection of collection.

Collection of DepositGroupingDataContract

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "CurrentCount": 2,
  "PageSize": 1,
  "PageNumber": 1,
  "Collection": [
    {
      "DateProtected": "2026-08-05T00:27:59.6134824Z",
      "Amount": 2.0,
      "PrimaryTenant": "sample string 3",
      "Address": "sample string 4",
      "NumberOfDepositsProtected": 5,
      "TenancyEndDate": "2026-08-05T00:27:59.6134824Z",
      "TenantRoleId": 7,
      "TenantGroupId": 8,
      "LettingRoleId": 9,
      "Id": 10
    },
    {
      "DateProtected": "2026-08-05T00:27:59.6134824Z",
      "Amount": 2.0,
      "PrimaryTenant": "sample string 3",
      "Address": "sample string 4",
      "NumberOfDepositsProtected": 5,
      "TenancyEndDate": "2026-08-05T00:27:59.6134824Z",
      "TenantRoleId": 7,
      "TenantGroupId": 8,
      "LettingRoleId": 9,
      "Id": 10
    }
  ]
}