POST api/list/pm/certificatesandlicences

Certificates And Licences. Processes this list API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The pm certificates and licences list filter data contract supplied with the request.

PmCertificatesAndLicencesListFilterDataContract
NameDescriptionTypeAdditional information
BranchIds

The unique identifiers of the related branch resources.

Collection of integer

None.

ExpiryDateFrom

The expiry date from, expressed as a date and time.

date

None.

ExpiryDateTo

The expiry date to, expressed as a date and time.

date

None.

TeamGroupIds

The unique identifiers of the related team group resources.

Collection of integer

None.

CertificateTypes

The collection of certificate types.

Collection of string

None.

DocumentUploaded

Indicates whether document uploaded is true.

boolean

None.

ServiceLevels

The collection of service levels.

Collection of string

None.

IncludeActiveTenancies

Indicates whether include active tenancies is true.

boolean

None.

LatestCertificatesOnly

Indicates whether latest certificates only is true.

boolean

None.

Sort

The sort classification.

PmCertificatesAndLicencesListSort

None.

PageSize

The page size value.

integer

None.

PageNumber

The page number value.

integer

None.

Term

The term value.

string

None.

OrderByDescending

Indicates whether order by descending is true.

boolean

None.

Name

The name value.

string

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "BranchIds": [
    1,
    2
  ],
  "ExpiryDateFrom": "2026-07-23T08:20:30.8111082Z",
  "ExpiryDateTo": "2026-07-23T08:20:30.8111082Z",
  "TeamGroupIds": [
    1,
    2
  ],
  "CertificateTypes": [
    "sample string 1",
    "sample string 2"
  ],
  "DocumentUploaded": true,
  "ServiceLevels": [
    "sample string 1",
    "sample string 2"
  ],
  "IncludeActiveTenancies": true,
  "LatestCertificatesOnly": true,
  "Sort": 1,
  "PageSize": 1,
  "PageNumber": 1,
  "Term": "sample string 1",
  "OrderByDescending": true,
  "Name": "sample string 2"
}

Response Information

Resource Description

The response returned after the operation completes.

PagedCollectionDataContractOfCertificatesAndLicencesListDataContract
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 CertificatesAndLicencesListDataContract

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "CurrentCount": 2,
  "PageSize": 1,
  "PageNumber": 1,
  "Collection": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "StartDate": "2026-07-23T08:20:30.8111082Z",
      "ExpiryDate": "2026-07-23T08:20:30.8111082Z",
      "ReceivedDate": "2026-07-23T08:20:30.8111082Z",
      "CertificateType": "sample string 6",
      "HasDocument": true,
      "PropertyId": 8,
      "Address": "sample string 9",
      "ServiceLevel": "sample string 10",
      "BranchId": 11,
      "MaintenanceJobId": 12,
      "Status": "sample string 13",
      "BelongsToActiveTenancy": true
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "StartDate": "2026-07-23T08:20:30.8111082Z",
      "ExpiryDate": "2026-07-23T08:20:30.8111082Z",
      "ReceivedDate": "2026-07-23T08:20:30.8111082Z",
      "CertificateType": "sample string 6",
      "HasDocument": true,
      "PropertyId": 8,
      "Address": "sample string 9",
      "ServiceLevel": "sample string 10",
      "BranchId": 11,
      "MaintenanceJobId": 12,
      "Status": "sample string 13",
      "BelongsToActiveTenancy": true
    }
  ]
}