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": "77960adc-4bf6-4905-a3b2-7e099b8ac141",
"ClientID": "66380286-ecdc-4e0c-82f7-346bca80c33c",
"VehicleID": "038af292-a433-4d94-80ed-cf9800b07f03",
"FromDate": "2026-09-22T20:39:39.3364265+04:00",
"ToDate": "2026-09-22T20:39:39.3364265+04:00",
"SchoolID": "e677db76-34cf-4f15-9b28-434baec1b419",
"ClassID": "d657b437-d2be-45ba-8fba-1754bafbcda6",
"TripID": "73fdcf82-504d-4a01-ae85-47bd5abc1f02",
"StudentID": "feb1d823-dd9f-4e4a-b85b-81d2c8fd5905",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "12cf4c58-c241-4a04-a27e-234e1d6d286b",
"EmployeeID": "3ed1b74d-9a56-41cc-83cf-0ccfa847b496",
"UserID": "4ce8101f-5599-4b8f-9717-2f54e549b9b3",
"BusinessHourID": "c0ff10db-501c-48f2-aa1e-36cc295cace9"
}
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>c0ff10db-501c-48f2-aa1e-36cc295cace9</BusinessHourID> <ClassID>d657b437-d2be-45ba-8fba-1754bafbcda6</ClassID> <ClientID>66380286-ecdc-4e0c-82f7-346bca80c33c</ClientID> <DriverID>12cf4c58-c241-4a04-a27e-234e1d6d286b</DriverID> <EmployeeID>3ed1b74d-9a56-41cc-83cf-0ccfa847b496</EmployeeID> <FromDate>2026-09-22T20:39:39.3364265+04:00</FromDate> <Month>1</Month> <PartnerID>77960adc-4bf6-4905-a3b2-7e099b8ac141</PartnerID> <SchoolID>e677db76-34cf-4f15-9b28-434baec1b419</SchoolID> <StudentID>feb1d823-dd9f-4e4a-b85b-81d2c8fd5905</StudentID> <ToDate>2026-09-22T20:39:39.3364265+04:00</ToDate> <TripID>73fdcf82-504d-4a01-ae85-47bd5abc1f02</TripID> <UserID>4ce8101f-5599-4b8f-9717-2f54e549b9b3</UserID> <VehicleID>038af292-a433-4d94-80ed-cf9800b07f03</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-09-22T20:39:39.3364265+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-09-22T20:39:39.3364265+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-09-22T20:39:39.3364265+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-09-22T20:39:39.3364265+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>