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": "48d15afc-f73f-47c4-9293-70c24f0347ac",
"ClientID": "895c99f9-2f5f-4e4e-9f6e-89367d1b1a4d",
"VehicleID": "33215eab-7dd9-4ab1-a191-b3f3c36c2707",
"FromDate": "2026-08-02T20:09:58.4675647+04:00",
"ToDate": "2026-08-02T20:09:58.4675647+04:00",
"SchoolID": "42faec9a-90bc-4cb0-99f0-517bcc693967",
"ClassID": "2cf26179-7c98-4e27-afb7-a3584a8fd1f8",
"TripID": "27dfc15e-5597-4af6-9800-f03fedf3f4a9",
"StudentID": "af7c1a9a-3599-4a98-9e3f-f3a530b4698e",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "0fa9e606-a18b-4a73-a685-f75d9129bc91",
"EmployeeID": "6b25ea1c-c5b3-444f-964b-f3585a89a124",
"UserID": "1f3d22a5-f8b8-4557-85f4-94a3df80da26",
"BusinessHourID": "8fb8e929-f1e2-446b-8a45-47ab69ee7d44"
}
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>8fb8e929-f1e2-446b-8a45-47ab69ee7d44</BusinessHourID> <ClassID>2cf26179-7c98-4e27-afb7-a3584a8fd1f8</ClassID> <ClientID>895c99f9-2f5f-4e4e-9f6e-89367d1b1a4d</ClientID> <DriverID>0fa9e606-a18b-4a73-a685-f75d9129bc91</DriverID> <EmployeeID>6b25ea1c-c5b3-444f-964b-f3585a89a124</EmployeeID> <FromDate>2026-08-02T20:09:58.4675647+04:00</FromDate> <Month>1</Month> <PartnerID>48d15afc-f73f-47c4-9293-70c24f0347ac</PartnerID> <SchoolID>42faec9a-90bc-4cb0-99f0-517bcc693967</SchoolID> <StudentID>af7c1a9a-3599-4a98-9e3f-f3a530b4698e</StudentID> <ToDate>2026-08-02T20:09:58.4675647+04:00</ToDate> <TripID>27dfc15e-5597-4af6-9800-f03fedf3f4a9</TripID> <UserID>1f3d22a5-f8b8-4557-85f4-94a3df80da26</UserID> <VehicleID>33215eab-7dd9-4ab1-a191-b3f3c36c2707</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-08-02T20:09:58.4831941+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-08-02T20:09:58.4831941+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-08-02T20:09:58.4831941+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-08-02T20:09:58.4831941+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>