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": "1912df4d-d1a5-4f1b-8471-dbf20f4ff53f",
"ClientID": "4730e688-da76-4018-add9-88a045921743",
"VehicleID": "b6965bb1-b62d-432a-8f40-c7b47b77b0db",
"FromDate": "2025-11-09T00:43:01.3526676+04:00",
"ToDate": "2025-11-09T00:43:01.3526676+04:00",
"SchoolID": "1b1ac597-0d3d-4afd-9bf1-82a660681895",
"ClassID": "ef7146ba-1c0b-4e0c-811b-a99c7deebfbb",
"TripID": "e3371b37-fba9-43a8-9edf-cb919281b58a",
"StudentID": "5d0dc5a0-16d7-4319-862a-9e87202c8880",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "e8d421bd-97c3-4adb-bd7c-632eb723b34e",
"EmployeeID": "dd94be33-e685-439b-8146-08113da5e540",
"UserID": "f85553d7-9d09-444e-b127-0543a11529cc",
"BusinessHourID": "cd5c3443-ccdf-4dc7-a0a8-d4cb141a3075"
}
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>cd5c3443-ccdf-4dc7-a0a8-d4cb141a3075</BusinessHourID> <ClassID>ef7146ba-1c0b-4e0c-811b-a99c7deebfbb</ClassID> <ClientID>4730e688-da76-4018-add9-88a045921743</ClientID> <DriverID>e8d421bd-97c3-4adb-bd7c-632eb723b34e</DriverID> <EmployeeID>dd94be33-e685-439b-8146-08113da5e540</EmployeeID> <FromDate>2025-11-09T00:43:01.3526676+04:00</FromDate> <Month>1</Month> <PartnerID>1912df4d-d1a5-4f1b-8471-dbf20f4ff53f</PartnerID> <SchoolID>1b1ac597-0d3d-4afd-9bf1-82a660681895</SchoolID> <StudentID>5d0dc5a0-16d7-4319-862a-9e87202c8880</StudentID> <ToDate>2025-11-09T00:43:01.3526676+04:00</ToDate> <TripID>e3371b37-fba9-43a8-9edf-cb919281b58a</TripID> <UserID>f85553d7-9d09-444e-b127-0543a11529cc</UserID> <VehicleID>b6965bb1-b62d-432a-8f40-c7b47b77b0db</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-11-09T00:43:01.3526676+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2025-11-09T00:43:01.3526676+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-11-09T00:43:01.3526676+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2025-11-09T00:43:01.3526676+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>