POST Api/TaskBroadcastMessage
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": "e4ea5643-3f07-48bc-a15a-f53ad519df19",
"ClientID": "9d080a81-453a-4c8e-9d13-5f0c5039dcb3",
"VehicleID": "9e6cb6ac-d89d-4af4-a732-5b837000e02b",
"FromDate": "2026-07-09T00:53:23.8597877+04:00",
"ToDate": "2026-07-09T00:53:23.8597877+04:00",
"SchoolID": "0f7e6edc-3d4e-4d04-9f92-46fcecc14743",
"ClassID": "de4ad59a-a792-440d-abdb-fa0210d696c1",
"TripID": "40854024-1784-48c6-a15c-88521dc91c4a",
"StudentID": "2df3977c-5d7f-432f-adcf-9b10334d4943",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "05f10a74-b7db-486e-b43e-1fb63ccf06d9",
"EmployeeID": "d77ead4e-5583-4fa1-a5c4-91100f7b30d8",
"UserID": "da9ffde8-1ae0-4ed4-8791-39aedf479a27",
"BusinessHourID": "624dcbd9-6e86-4122-b966-e67a21a46b79"
}
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>624dcbd9-6e86-4122-b966-e67a21a46b79</BusinessHourID> <ClassID>de4ad59a-a792-440d-abdb-fa0210d696c1</ClassID> <ClientID>9d080a81-453a-4c8e-9d13-5f0c5039dcb3</ClientID> <DriverID>05f10a74-b7db-486e-b43e-1fb63ccf06d9</DriverID> <EmployeeID>d77ead4e-5583-4fa1-a5c4-91100f7b30d8</EmployeeID> <FromDate>2026-07-09T00:53:23.8597877+04:00</FromDate> <Month>1</Month> <PartnerID>e4ea5643-3f07-48bc-a15a-f53ad519df19</PartnerID> <SchoolID>0f7e6edc-3d4e-4d04-9f92-46fcecc14743</SchoolID> <StudentID>2df3977c-5d7f-432f-adcf-9b10334d4943</StudentID> <ToDate>2026-07-09T00:53:23.8597877+04:00</ToDate> <TripID>40854024-1784-48c6-a15c-88521dc91c4a</TripID> <UserID>da9ffde8-1ae0-4ed4-8791-39aedf479a27</UserID> <VehicleID>9e6cb6ac-d89d-4af4-a732-5b837000e02b</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-07-09T00:53:23.8597877+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-07-09T00:53:23.8597877+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-07-09T00:53:23.8597877+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-07-09T00:53:23.8597877+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>