GET incidents?tenantId={tenantId}&PageNo={PageNo}&PageSize={PageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantId | integer |
Required |
|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IncidentEx| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| TenantId | integer |
None. |
|
| RatingId | integer |
None. |
|
| LandLordId | string |
None. |
|
| Date | date |
None. |
|
| Description | string |
None. |
|
| CreatedBy | string |
None. |
|
| Category | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"TenantId": 1,
"RatingId": 1,
"LandLordId": "sample string 2",
"Date": "2025-11-17T16:55:45.7416473+01:00",
"Description": "sample string 3",
"CreatedBy": "sample string 4",
"Category": 5
},
{
"Id": 1,
"TenantId": 1,
"RatingId": 1,
"LandLordId": "sample string 2",
"Date": "2025-11-17T16:55:45.7416473+01:00",
"Description": "sample string 3",
"CreatedBy": "sample string 4",
"Category": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfIncidentEx xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TwoDoIT.TenantApp.Common">
<IncidentEx>
<Category>5</Category>
<CreatedBy>sample string 4</CreatedBy>
<Date>2025-11-17T16:55:45.7416473+01:00</Date>
<Description>sample string 3</Description>
<Id>1</Id>
<LandLordId>sample string 2</LandLordId>
<RatingId>1</RatingId>
<TenantId>1</TenantId>
</IncidentEx>
<IncidentEx>
<Category>5</Category>
<CreatedBy>sample string 4</CreatedBy>
<Date>2025-11-17T16:55:45.7416473+01:00</Date>
<Description>sample string 3</Description>
<Id>1</Id>
<LandLordId>sample string 2</LandLordId>
<RatingId>1</RatingId>
<TenantId>1</TenantId>
</IncidentEx>
</ArrayOfIncidentEx>