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": "81ab6ff8-3beb-45cc-9e5c-8fc6ddd335ad",
"ClientID": "4f63f091-88cf-4fb9-ad71-0a56cccc566d",
"VehicleID": "cf96c125-bb74-42c4-9f83-fa2a21b5419f",
"FromDate": "2025-12-15T10:19:47.9640782+04:00",
"ToDate": "2025-12-15T10:19:47.9640782+04:00",
"SchoolID": "3912a65c-e92f-4e5e-8331-8e3847a62678",
"ClassID": "875bfdc7-708f-43e5-ad77-39e2f0216fbd",
"TripID": "56d97e90-62f6-4f54-9b68-cec29a9d410e",
"StudentID": "33c010ac-f22b-4aa2-a0db-505f37627a2f",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "bacc1965-5290-44dd-9c38-3977a1eefead",
"EmployeeID": "60ca3fa8-419a-4b62-ab23-d5a93aee20be",
"UserID": "97c2b8f3-974a-48c9-9cb0-6bf6f7a42906",
"BusinessHourID": "8e3feb53-01a8-4a31-96db-e99ac4c81b5f"
}
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>8e3feb53-01a8-4a31-96db-e99ac4c81b5f</BusinessHourID> <ClassID>875bfdc7-708f-43e5-ad77-39e2f0216fbd</ClassID> <ClientID>4f63f091-88cf-4fb9-ad71-0a56cccc566d</ClientID> <DriverID>bacc1965-5290-44dd-9c38-3977a1eefead</DriverID> <EmployeeID>60ca3fa8-419a-4b62-ab23-d5a93aee20be</EmployeeID> <FromDate>2025-12-15T10:19:47.9640782+04:00</FromDate> <Month>1</Month> <PartnerID>81ab6ff8-3beb-45cc-9e5c-8fc6ddd335ad</PartnerID> <SchoolID>3912a65c-e92f-4e5e-8331-8e3847a62678</SchoolID> <StudentID>33c010ac-f22b-4aa2-a0db-505f37627a2f</StudentID> <ToDate>2025-12-15T10:19:47.9640782+04:00</ToDate> <TripID>56d97e90-62f6-4f54-9b68-cec29a9d410e</TripID> <UserID>97c2b8f3-974a-48c9-9cb0-6bf6f7a42906</UserID> <VehicleID>cf96c125-bb74-42c4-9f83-fa2a21b5419f</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": "2025-12-15T10:19:47.9797061+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2025-12-15T10:19:47.9797061+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>2025-12-15T10:19:47.9797061+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2025-12-15T10:19:47.9797061+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>