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": "739ca55b-84d7-4868-90de-66a746387e68",
"ClientID": "aee9e7ac-20e8-409a-84eb-3e0738779906",
"VehicleID": "292f89da-034c-4b44-a6f8-8a77337ba757",
"FromDate": "2026-05-09T08:33:31.4478021+04:00",
"ToDate": "2026-05-09T08:33:31.4478021+04:00",
"SchoolID": "b22caeb1-95f9-4847-84f8-81d730b67511",
"ClassID": "dcab81a2-c0ad-4229-8047-2fccaacaa38f",
"TripID": "886e1b2a-c1c6-4922-a8a9-ebf2981c4851",
"StudentID": "c9a33559-d29e-413b-9938-1ad09631cb9d",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "877afe2f-97d8-44cd-a908-f8978a4031cf",
"EmployeeID": "508afef6-b80f-46a3-af68-c3125bcfc3c3",
"UserID": "c6343723-63ea-4c41-8cc8-94f214e5581d",
"BusinessHourID": "22edee1a-f598-40f7-a6e9-fa25e5a4890c"
}
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>22edee1a-f598-40f7-a6e9-fa25e5a4890c</BusinessHourID> <ClassID>dcab81a2-c0ad-4229-8047-2fccaacaa38f</ClassID> <ClientID>aee9e7ac-20e8-409a-84eb-3e0738779906</ClientID> <DriverID>877afe2f-97d8-44cd-a908-f8978a4031cf</DriverID> <EmployeeID>508afef6-b80f-46a3-af68-c3125bcfc3c3</EmployeeID> <FromDate>2026-05-09T08:33:31.4478021+04:00</FromDate> <Month>1</Month> <PartnerID>739ca55b-84d7-4868-90de-66a746387e68</PartnerID> <SchoolID>b22caeb1-95f9-4847-84f8-81d730b67511</SchoolID> <StudentID>c9a33559-d29e-413b-9938-1ad09631cb9d</StudentID> <ToDate>2026-05-09T08:33:31.4478021+04:00</ToDate> <TripID>886e1b2a-c1c6-4922-a8a9-ebf2981c4851</TripID> <UserID>c6343723-63ea-4c41-8cc8-94f214e5581d</UserID> <VehicleID>292f89da-034c-4b44-a6f8-8a77337ba757</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-05-09T08:33:31.4478021+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-05-09T08:33:31.4478021+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-05-09T08:33:31.4478021+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-05-09T08:33:31.4478021+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>