POST api/debrief/create

Create Debrief

Request Information

URI Parameters

None.

Body Parameters

CreateDebriefPostModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CreateDebriefPostModel'.

Response Information

Resource Description

Success

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>