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": "4fde97fc-0f1f-45fa-8171-6bf6b109d430",
"ClientID": "973d9513-cf08-4781-b09f-409cc3f3d63f",
"VehicleID": "80bfc08a-beba-4fb2-b85d-541fa7db2ddb",
"FromDate": "2026-08-21T10:43:54.1098878+04:00",
"ToDate": "2026-08-21T10:43:54.1098878+04:00",
"SchoolID": "ed3ecee8-4f39-4268-9c1b-0a5a0081b5e5",
"ClassID": "c72f3d47-a198-48aa-a192-36c20a5e767c",
"TripID": "85b93460-7888-4015-9b92-15362b056c65",
"StudentID": "dae39fb1-075f-4684-8b97-a89ebda4e41f",
"Month": 1,
"Year": 1,
"AuditModule": 8,
"DriverID": "2f268c85-7301-4b95-8fb3-22a37b421393",
"EmployeeID": "b4f4c248-cadc-490b-ba00-917e1e23f522",
"UserID": "b918e215-a11f-4bb8-aba1-673a69b48f00",
"BusinessHourID": "8e7aff0b-a37b-4385-8bf2-df8ef24542a8"
}
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>8e7aff0b-a37b-4385-8bf2-df8ef24542a8</BusinessHourID> <ClassID>c72f3d47-a198-48aa-a192-36c20a5e767c</ClassID> <ClientID>973d9513-cf08-4781-b09f-409cc3f3d63f</ClientID> <DriverID>2f268c85-7301-4b95-8fb3-22a37b421393</DriverID> <EmployeeID>b4f4c248-cadc-490b-ba00-917e1e23f522</EmployeeID> <FromDate>2026-08-21T10:43:54.1098878+04:00</FromDate> <Month>1</Month> <PartnerID>4fde97fc-0f1f-45fa-8171-6bf6b109d430</PartnerID> <SchoolID>ed3ecee8-4f39-4268-9c1b-0a5a0081b5e5</SchoolID> <StudentID>dae39fb1-075f-4684-8b97-a89ebda4e41f</StudentID> <ToDate>2026-08-21T10:43:54.1098878+04:00</ToDate> <TripID>85b93460-7888-4015-9b92-15362b056c65</TripID> <UserID>b918e215-a11f-4bb8-aba1-673a69b48f00</UserID> <VehicleID>80bfc08a-beba-4fb2-b85d-541fa7db2ddb</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-21T10:43:54.1255188+04:00"
},
{
"Message": "sample string 1",
"BroadcastBy": "sample string 2",
"BroadcastOn": "2026-08-21T10:43:54.1255188+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-21T10:43:54.1255188+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
<BroadcastMessages>
<BroadcastBy>sample string 2</BroadcastBy>
<BroadcastOn>2026-08-21T10:43:54.1255188+04:00</BroadcastOn>
<Message>sample string 1</Message>
</BroadcastMessages>
</ArrayOfBroadcastMessages>