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": "aa95639b-16aa-4666-9758-daf6c71dc5f2",
"ClientID": "85157934-6ef1-416e-a4ef-e91b8566542e",
"VehicleID": "2bd7ffd6-be0e-4924-8102-37fb8d1e3894",
"FromDate": "2026-03-25T01:24:52.6187748+04:00",
"ToDate": "2026-03-25T01:24:52.6187748+04:00",
"SchoolID": "9960d305-906a-4abc-94c3-32d6ab8ac57e",
"ClassID": "89ba9a4d-1802-40ff-95b2-042f7e59135f",
"TripID": "1f7c28c3-6cea-4bda-954e-53016d976011",
"StudentID": "ec24be1c-7ce2-4d71-8dec-f69e48705248",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "0d535365-6913-41bd-a2c6-604b625bba56",
"EmployeeID": "17fd6e31-f6af-4b68-869f-c93dcde0bb9c",
"UserID": "e08150d7-7c40-4222-abfe-eff98cfc749c",
"BusinessHourID": "920b55f1-77aa-4e9e-98ac-b508fbaaaf1c"
}
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>920b55f1-77aa-4e9e-98ac-b508fbaaaf1c</BusinessHourID> <ClassID>89ba9a4d-1802-40ff-95b2-042f7e59135f</ClassID> <ClientID>85157934-6ef1-416e-a4ef-e91b8566542e</ClientID> <DriverID>0d535365-6913-41bd-a2c6-604b625bba56</DriverID> <EmployeeID>17fd6e31-f6af-4b68-869f-c93dcde0bb9c</EmployeeID> <FromDate>2026-03-25T01:24:52.6187748+04:00</FromDate> <Month>1</Month> <PartnerID>aa95639b-16aa-4666-9758-daf6c71dc5f2</PartnerID> <SchoolID>9960d305-906a-4abc-94c3-32d6ab8ac57e</SchoolID> <StudentID>ec24be1c-7ce2-4d71-8dec-f69e48705248</StudentID> <ToDate>2026-03-25T01:24:52.6187748+04:00</ToDate> <TripID>1f7c28c3-6cea-4bda-954e-53016d976011</TripID> <UserID>e08150d7-7c40-4222-abfe-eff98cfc749c</UserID> <VehicleID>2bd7ffd6-be0e-4924-8102-37fb8d1e3894</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": "2026-03-25T01:24:52.6187748+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-03-25T01:24:52.6187748+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>2026-03-25T01:24:52.6187748+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-03-25T01:24:52.6187748+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>