POST api/debrief/create
Create Debrief
Request Information
URI Parameters
None.
Body Parameters
CreateDebriefPostModelName | Description | Type | Additional information |
---|---|---|---|
Driver |
Driver Callsign |
string |
None. |
DueDate |
Threshold Date which causes the Debrief to transition into the "Overdue" status |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Driver": "sample string 1", "DueDate": "2025-05-09T13:36:29.7234846+01:00" }
application/xml, text/xml
Sample:
<CreateDebriefPostModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Driver>sample string 1</Driver> <DueDate>2025-05-09T13:36:29.7234846+01:00</DueDate> </CreateDebriefPostModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Success
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean>true</boolean>