POST Api/RescheduleApi/GetAllRescheduleRequestsByDate
Request Information
URI Parameters
None.
Body Parameters
AgentDashBoardFilterationDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| IDs | string |
None. |
|
| AgentId | integer |
None. |
|
| Filter | string |
None. |
|
| From | date |
None. |
|
| To | date |
None. |
|
| DivisionId | globally unique identifier |
None. |
|
| AssetId | globally unique identifier |
None. |
|
| BuildingId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"IDs": "sample string 1",
"AgentId": 1,
"Filter": "sample string 2",
"From": "2025-10-30T10:13:23.9430638+04:00",
"To": "2025-10-30T10:13:23.9430638+04:00",
"DivisionId": "11e7d2c8-467f-4ca7-97f9-9d50e7d2d45b",
"AssetId": "ec7df64c-9f26-4ad6-9cb6-31743deaa41d",
"BuildingId": "f1c988c8-fac5-4a90-8b52-57c9a09b953e"
}
text/html, multipart/form-data
Sample:
{"IDs":"sample string 1","AgentId":1,"Filter":"sample string 2","From":"2025-10-30T10:13:23.9430638+04:00","To":"2025-10-30T10:13:23.9430638+04:00","DivisionId":"11e7d2c8-467f-4ca7-97f9-9d50e7d2d45b","AssetId":"ec7df64c-9f26-4ad6-9cb6-31743deaa41d","BuildingId":"f1c988c8-fac5-4a90-8b52-57c9a09b953e"}
application/xml, text/xml
Sample:
<AgentDashBoardFilterationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO"> <AgentId>1</AgentId> <AssetId>ec7df64c-9f26-4ad6-9cb6-31743deaa41d</AssetId> <BuildingId>f1c988c8-fac5-4a90-8b52-57c9a09b953e</BuildingId> <DivisionId>11e7d2c8-467f-4ca7-97f9-9d50e7d2d45b</DivisionId> <Filter>sample string 2</Filter> <From>2025-10-30T10:13:23.9430638+04:00</From> <IDs>sample string 1</IDs> <To>2025-10-30T10:13:23.9430638+04:00</To> </AgentDashBoardFilterationDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of CustomRescheduleDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ScheduleId | integer |
None. |
|
| NewScheduleDate | date |
None. |
|
| CheckListTitle | string |
None. |
|
| OrginalScheduleDate | date |
None. |
|
| Status | string |
None. |
|
| AgentId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ScheduleId": 1,
"NewScheduleDate": "2025-10-30T10:13:23.9430638+04:00",
"CheckListTitle": "sample string 2",
"OrginalScheduleDate": "2025-10-30T10:13:23.9430638+04:00",
"Status": "sample string 3",
"AgentId": 1
},
{
"ScheduleId": 1,
"NewScheduleDate": "2025-10-30T10:13:23.9430638+04:00",
"CheckListTitle": "sample string 2",
"OrginalScheduleDate": "2025-10-30T10:13:23.9430638+04:00",
"Status": "sample string 3",
"AgentId": 1
}
]
text/html, multipart/form-data
Sample:
[{"ScheduleId":1,"NewScheduleDate":"2025-10-30T10:13:23.9430638+04:00","CheckListTitle":"sample string 2","OrginalScheduleDate":"2025-10-30T10:13:23.9430638+04:00","Status":"sample string 3","AgentId":1},{"ScheduleId":1,"NewScheduleDate":"2025-10-30T10:13:23.9430638+04:00","CheckListTitle":"sample string 2","OrginalScheduleDate":"2025-10-30T10:13:23.9430638+04:00","Status":"sample string 3","AgentId":1}]
application/xml, text/xml
Sample:
<ArrayOfCustomRescheduleDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO">
<CustomRescheduleDTO>
<AgentId>1</AgentId>
<CheckListTitle>sample string 2</CheckListTitle>
<NewScheduleDate>2025-10-30T10:13:23.9430638+04:00</NewScheduleDate>
<OrginalScheduleDate>2025-10-30T10:13:23.9430638+04:00</OrginalScheduleDate>
<ScheduleId>1</ScheduleId>
<Status>sample string 3</Status>
</CustomRescheduleDTO>
<CustomRescheduleDTO>
<AgentId>1</AgentId>
<CheckListTitle>sample string 2</CheckListTitle>
<NewScheduleDate>2025-10-30T10:13:23.9430638+04:00</NewScheduleDate>
<OrginalScheduleDate>2025-10-30T10:13:23.9430638+04:00</OrginalScheduleDate>
<ScheduleId>1</ScheduleId>
<Status>sample string 3</Status>
</CustomRescheduleDTO>
</ArrayOfCustomRescheduleDTO>