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": "63fd539d-7fe6-460c-8c82-5718c4014ac2",
"ClientID": "1f6542fc-bcd7-4ca5-833f-21de656b6dfe",
"VehicleID": "c2f33a89-6d34-40ac-ab1a-431b296b60a6",
"FromDate": "2026-06-06T09:21:23.102103+04:00",
"ToDate": "2026-06-06T09:21:23.102103+04:00",
"SchoolID": "bcd300c6-ba85-40bc-8fee-a81534c56d63",
"ClassID": "876a90b7-12b5-4f2e-b733-0d24f2770bd6",
"TripID": "e386cdac-5dbe-421f-a47d-0543a6a7afdf",
"StudentID": "08a32f87-06c5-4352-acb6-2190ce5dde42",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "f71b9c84-f87f-4d37-8dac-e3fa882439ff",
"EmployeeID": "add184bf-6799-49f0-9b0b-bb494bf31b96",
"UserID": "37f256ec-7935-4803-93d2-9971898957b6",
"BusinessHourID": "5e5ae05e-97e8-437a-aede-3944e4dc641d"
}
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>5e5ae05e-97e8-437a-aede-3944e4dc641d</BusinessHourID> <ClassID>876a90b7-12b5-4f2e-b733-0d24f2770bd6</ClassID> <ClientID>1f6542fc-bcd7-4ca5-833f-21de656b6dfe</ClientID> <DriverID>f71b9c84-f87f-4d37-8dac-e3fa882439ff</DriverID> <EmployeeID>add184bf-6799-49f0-9b0b-bb494bf31b96</EmployeeID> <FromDate>2026-06-06T09:21:23.102103+04:00</FromDate> <Month>1</Month> <PartnerID>63fd539d-7fe6-460c-8c82-5718c4014ac2</PartnerID> <SchoolID>bcd300c6-ba85-40bc-8fee-a81534c56d63</SchoolID> <StudentID>08a32f87-06c5-4352-acb6-2190ce5dde42</StudentID> <ToDate>2026-06-06T09:21:23.102103+04:00</ToDate> <TripID>e386cdac-5dbe-421f-a47d-0543a6a7afdf</TripID> <UserID>37f256ec-7935-4803-93d2-9971898957b6</UserID> <VehicleID>c2f33a89-6d34-40ac-ab1a-431b296b60a6</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.102103+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-06-06T09:21:23.102103+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.102103+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-06-06T09:21:23.102103+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>