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": "9f467273-e445-4b5c-8717-135165d4e852",
"ClientID": "011da881-5655-4b5c-8ab3-80c0284ea3b3",
"VehicleID": "95be049b-4ac5-48f3-8208-128516d673a4",
"FromDate": "2026-06-06T09:21:23.1646022+04:00",
"ToDate": "2026-06-06T09:21:23.1646022+04:00",
"SchoolID": "116f9662-751d-4845-9658-49fc6743401d",
"ClassID": "b043f4ef-e00e-4efb-abd3-a3e7e62d6457",
"TripID": "35bd74c5-700e-4756-8076-c449a680158a",
"StudentID": "9f1910c7-b94a-49b5-b651-cd02abecbe31",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "7e240584-4d2b-43fb-b29e-de96d77be838",
"EmployeeID": "b7b9889a-f3ee-45ce-a81f-841593226e4d",
"UserID": "20e095a7-a29a-4296-bfb9-bb0ac0900763",
"BusinessHourID": "c996fc0c-1697-48de-b73e-5fcb89ca5856"
}
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>c996fc0c-1697-48de-b73e-5fcb89ca5856</BusinessHourID> <ClassID>b043f4ef-e00e-4efb-abd3-a3e7e62d6457</ClassID> <ClientID>011da881-5655-4b5c-8ab3-80c0284ea3b3</ClientID> <DriverID>7e240584-4d2b-43fb-b29e-de96d77be838</DriverID> <EmployeeID>b7b9889a-f3ee-45ce-a81f-841593226e4d</EmployeeID> <FromDate>2026-06-06T09:21:23.1646022+04:00</FromDate> <Month>1</Month> <PartnerID>9f467273-e445-4b5c-8717-135165d4e852</PartnerID> <SchoolID>116f9662-751d-4845-9658-49fc6743401d</SchoolID> <StudentID>9f1910c7-b94a-49b5-b651-cd02abecbe31</StudentID> <ToDate>2026-06-06T09:21:23.1646022+04:00</ToDate> <TripID>35bd74c5-700e-4756-8076-c449a680158a</TripID> <UserID>20e095a7-a29a-4296-bfb9-bb0ac0900763</UserID> <VehicleID>95be049b-4ac5-48f3-8208-128516d673a4</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-06-06T09:21:23.1646022+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-06-06T09:21:23.1646022+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-06-06T09:21:23.1646022+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-06-06T09:21:23.1646022+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>