POST Api/TaskBroadcastMessage/GetByDriverID
Request Information
URI Parameters
None.
Body Parameters
ReportParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| PartnerID | globally unique identifier |
None. |
|
| ClientID | globally unique identifier |
None. |
|
| VehicleID | globally unique identifier |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| SchoolID | globally unique identifier |
None. |
|
| ClassID | globally unique identifier |
None. |
|
| TripID | globally unique identifier |
None. |
|
| StudentID | globally unique identifier |
None. |
|
| Month | integer |
None. |
|
| Year | integer |
None. |
|
| AuditModule | integer |
None. |
|
| DriverID | globally unique identifier |
None. |
|
| EmployeeID | globally unique identifier |
None. |
|
| UserID | globally unique identifier |
None. |
|
| BusinessHourID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"PartnerID": "9d38d15c-9263-4afe-af38-1488e2d20c94",
"ClientID": "28884c51-3ead-4263-b033-0ea9a87900ca",
"VehicleID": "cd33c34a-49d5-4f65-88b2-e84cbfcfd187",
"FromDate": "2025-12-15T10:21:22.2993285+04:00",
"ToDate": "2025-12-15T10:21:22.2993285+04:00",
"SchoolID": "d60b9584-16db-402e-9a31-9c27147b1d87",
"ClassID": "e0d82d98-2b04-4534-8ece-26587e241a3c",
"TripID": "e449d36e-4477-42ca-8fbf-41a776be7c4a",
"StudentID": "d68fb4a3-8278-4e37-9292-5ff9765bc862",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "1240c30b-dd04-4586-a739-3d4bca9c098a",
"EmployeeID": "5d75f1a4-a39f-4315-8d8c-8e62471588da",
"UserID": "04cb1521-5c3d-487f-9044-5e08ec6532dd",
"BusinessHourID": "00627742-56e0-4e0a-9ca3-a15620959adc"
}
application/xml, text/xml
Sample:
<ReportParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity.Reports"> <AuditModule>8</AuditModule> <BusinessHourID>00627742-56e0-4e0a-9ca3-a15620959adc</BusinessHourID> <ClassID>e0d82d98-2b04-4534-8ece-26587e241a3c</ClassID> <ClientID>28884c51-3ead-4263-b033-0ea9a87900ca</ClientID> <DriverID>1240c30b-dd04-4586-a739-3d4bca9c098a</DriverID> <EmployeeID>5d75f1a4-a39f-4315-8d8c-8e62471588da</EmployeeID> <FromDate>2025-12-15T10:21:22.2993285+04:00</FromDate> <Month>1</Month> <PartnerID>9d38d15c-9263-4afe-af38-1488e2d20c94</PartnerID> <SchoolID>d60b9584-16db-402e-9a31-9c27147b1d87</SchoolID> <StudentID>d68fb4a3-8278-4e37-9292-5ff9765bc862</StudentID> <ToDate>2025-12-15T10:21:22.2993285+04:00</ToDate> <TripID>e449d36e-4477-42ca-8fbf-41a776be7c4a</TripID> <UserID>04cb1521-5c3d-487f-9044-5e08ec6532dd</UserID> <VehicleID>cd33c34a-49d5-4f65-88b2-e84cbfcfd187</VehicleID> <Year>1</Year> </ReportParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of BroadcastMessages| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| BroadcastBy | string |
None. |
|
| BroadcastOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2025-12-15T10:21:22.2993285+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2025-12-15T10:21:22.2993285+04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfBroadcastMessages xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootDriver.Service.Controllers">
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2025-12-15T10:21:22.2993285+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2025-12-15T10:21:22.2993285+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>