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": "f829c798-d230-46f2-b573-58ce48b69c8b",
"ClientID": "584a810b-3371-483d-89cc-9bd9d505457d",
"VehicleID": "d55d0b45-8930-4a37-9c7f-64bd759671aa",
"FromDate": "2025-12-25T18:53:05.7384464+04:00",
"ToDate": "2025-12-25T18:53:05.7384464+04:00",
"SchoolID": "817ef70a-7187-4109-b7f4-d92673d7f2d7",
"ClassID": "37f0e3b2-6401-461d-9378-a415940b4893",
"TripID": "569ac565-281a-4a1f-ac50-f7ff9f7a833b",
"StudentID": "9b07cf66-4e2f-4831-a20e-e8dd83c41ada",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "e74a20c6-1417-46fd-85d8-15263fd19ee2",
"EmployeeID": "dba50db7-d26e-47db-8263-2d23c742aa3d",
"UserID": "2ed6a5ec-4b0b-48c2-a65a-f5a6c62fdc7c",
"BusinessHourID": "eac09832-ff76-4375-9303-9dcf9d53a77a"
}
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>eac09832-ff76-4375-9303-9dcf9d53a77a</BusinessHourID> <ClassID>37f0e3b2-6401-461d-9378-a415940b4893</ClassID> <ClientID>584a810b-3371-483d-89cc-9bd9d505457d</ClientID> <DriverID>e74a20c6-1417-46fd-85d8-15263fd19ee2</DriverID> <EmployeeID>dba50db7-d26e-47db-8263-2d23c742aa3d</EmployeeID> <FromDate>2025-12-25T18:53:05.7384464+04:00</FromDate> <Month>1</Month> <PartnerID>f829c798-d230-46f2-b573-58ce48b69c8b</PartnerID> <SchoolID>817ef70a-7187-4109-b7f4-d92673d7f2d7</SchoolID> <StudentID>9b07cf66-4e2f-4831-a20e-e8dd83c41ada</StudentID> <ToDate>2025-12-25T18:53:05.7384464+04:00</ToDate> <TripID>569ac565-281a-4a1f-ac50-f7ff9f7a833b</TripID> <UserID>2ed6a5ec-4b0b-48c2-a65a-f5a6c62fdc7c</UserID> <VehicleID>d55d0b45-8930-4a37-9c7f-64bd759671aa</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-25T18:53:05.7384464+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2025-12-25T18:53:05.7384464+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-25T18:53:05.7384464+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2025-12-25T18:53:05.7384464+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>