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": "cf5e9cc7-350a-4a9a-89a5-a6a8afa91677",
"ClientID": "918f18de-0695-414e-b736-ce427eb3365a",
"VehicleID": "cb045824-576d-480a-9650-c0e3fd6557a6",
"FromDate": "2026-05-09T16:42:05.5423203+04:00",
"ToDate": "2026-05-09T16:42:05.5423203+04:00",
"SchoolID": "360ec8a6-2298-48be-9164-8ff67dfa5851",
"ClassID": "583333aa-6136-463c-8a05-efb8a6a56b31",
"TripID": "6b1d4996-0b0a-4fc7-9058-f5ad8135e144",
"StudentID": "3a9586d1-042a-40c5-96a1-13147bb0fa67",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "ef78f840-9063-4cb6-9453-7613b9b9a4ca",
"EmployeeID": "806c1ead-322f-4825-bed0-550e6c627637",
"UserID": "9a58205a-cae0-4567-b1cb-766000ab55b8",
"BusinessHourID": "aaf54c43-dea2-4680-a18f-70632586099d"
}
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>aaf54c43-dea2-4680-a18f-70632586099d</BusinessHourID> <ClassID>583333aa-6136-463c-8a05-efb8a6a56b31</ClassID> <ClientID>918f18de-0695-414e-b736-ce427eb3365a</ClientID> <DriverID>ef78f840-9063-4cb6-9453-7613b9b9a4ca</DriverID> <EmployeeID>806c1ead-322f-4825-bed0-550e6c627637</EmployeeID> <FromDate>2026-05-09T16:42:05.5423203+04:00</FromDate> <Month>1</Month> <PartnerID>cf5e9cc7-350a-4a9a-89a5-a6a8afa91677</PartnerID> <SchoolID>360ec8a6-2298-48be-9164-8ff67dfa5851</SchoolID> <StudentID>3a9586d1-042a-40c5-96a1-13147bb0fa67</StudentID> <ToDate>2026-05-09T16:42:05.5423203+04:00</ToDate> <TripID>6b1d4996-0b0a-4fc7-9058-f5ad8135e144</TripID> <UserID>9a58205a-cae0-4567-b1cb-766000ab55b8</UserID> <VehicleID>cb045824-576d-480a-9650-c0e3fd6557a6</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-09T16:42:05.5423203+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-05-09T16:42:05.5423203+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-09T16:42:05.5423203+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-05-09T16:42:05.5423203+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>