POST Api/TaskBroadcastMessage
Request Information
URI Parameters
None.
Body Parameters
ReportParameterName | 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": "cea5c9e7-b172-4af3-8f98-93f033746487", "ClientID": "dde6e8e8-318e-4c35-8ffb-dbc21be20d97", "VehicleID": "1888f3c4-8a21-4d7d-9186-754e5914ba1b", "FromDate": "2025-09-16T19:34:56.9147977+04:00", "ToDate": "2025-09-16T19:34:56.9147977+04:00", "SchoolID": "bd2c84c2-d1f3-430f-960c-1fbfce440ae0", "ClassID": "57c45fa4-1d4f-40dd-8ce6-21b4eae20f7d", "TripID": "e14ecf47-d87c-41e2-b35e-f3ae9aa5cac2", "StudentID": "5c7617f2-8658-4be7-a20c-51acb3e762fa", "Month": 1, "Year": 1, "AuditModule": 8, "DriverID": "11700895-3a52-4629-b51d-5a95457538d2", "EmployeeID": "ca125b78-357a-4381-8d62-98fea73e9031", "UserID": "b1e33387-a58d-4103-b0f9-6063f2d9b5e6", "BusinessHourID": "6a2449fa-7e34-44b1-9664-eb10e2a225b0" }
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>6a2449fa-7e34-44b1-9664-eb10e2a225b0</BusinessHourID> <ClassID>57c45fa4-1d4f-40dd-8ce6-21b4eae20f7d</ClassID> <ClientID>dde6e8e8-318e-4c35-8ffb-dbc21be20d97</ClientID> <DriverID>11700895-3a52-4629-b51d-5a95457538d2</DriverID> <EmployeeID>ca125b78-357a-4381-8d62-98fea73e9031</EmployeeID> <FromDate>2025-09-16T19:34:56.9147977+04:00</FromDate> <Month>1</Month> <PartnerID>cea5c9e7-b172-4af3-8f98-93f033746487</PartnerID> <SchoolID>bd2c84c2-d1f3-430f-960c-1fbfce440ae0</SchoolID> <StudentID>5c7617f2-8658-4be7-a20c-51acb3e762fa</StudentID> <ToDate>2025-09-16T19:34:56.9147977+04:00</ToDate> <TripID>e14ecf47-d87c-41e2-b35e-f3ae9aa5cac2</TripID> <UserID>b1e33387-a58d-4103-b0f9-6063f2d9b5e6</UserID> <VehicleID>1888f3c4-8a21-4d7d-9186-754e5914ba1b</VehicleID> <Year>1</Year> </ReportParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of BroadcastMessagesName | 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-09-16T19:34:56.9304205+04:00" }, { "Message": "sample string 1", "BroadcastBy": "sample string 2", "BroadcastOn": "2025-09-16T19:34:56.9304205+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-09-16T19:34:56.9304205+04:00</BroadcastOn> <Message>sample string 1</Message> </BroadcastMessages> <BroadcastMessages> <BroadcastBy>sample string 2</BroadcastBy> <BroadcastOn>2025-09-16T19:34:56.9304205+04:00</BroadcastOn> <Message>sample string 1</Message> </BroadcastMessages> </ArrayOfBroadcastMessages>