GET api/debrief/deleted?startDateTime={startDateTime}&endDateTime={endDateTime}

Get Deleted Debriefs

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDateTime

Optional start date bound

date

None.

endDateTime

Optional end date bound

date

None.

Body Parameters

None.

Response Information

Resource Description

A collection of Debriefs

Collection of Debrief
NameDescriptionTypeAdditional information
DebriefID

Unique Debrief Identifier

integer

None.

Driver

Driver Callsign

string

None.

SupervisorUser

Name of User set as the Debrief Supervisor of the Driver Circuit

string

None.

CreatedDate

Date of Debrief creation

date

None.

DataFrom

From Date of the Debrief Driver dataset

date

None.

DataTo

To Date of the Debrief Driver dataset

date

None.

DebriefReason

Reason why the Debrief was created

string

None.

DebriefStatus

Current Debrief Status

string

None.

DebrieferUser

User who completed the Debrief

string

None.

DriverComments

Comments of the Driver

string

None.

DebrieferComments

Comments of the Debriefer User

string

None.

CompletedDate

Date of Debrief completion

date

None.

DueDate

Threshold Date which causes the Debrief to transition into the "Overdue" status

date

None.

IsActive

Flag to show if the Debrief has not been deleted

boolean

None.

DeletedByUser

User who deleted the Debrief

string

None.

DeletedDate

Date of Debrief deletion

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DebriefID": 1,
    "Driver": "sample string 2",
    "SupervisorUser": "sample string 3",
    "CreatedDate": "2025-05-08T23:13:29.2487831+01:00",
    "DataFrom": "2025-05-08T23:13:29.2487831+01:00",
    "DataTo": "2025-05-08T23:13:29.2487831+01:00",
    "DebriefReason": "sample string 7",
    "DebriefStatus": "sample string 8",
    "DebrieferUser": "sample string 9",
    "DriverComments": "sample string 10",
    "DebrieferComments": "sample string 11",
    "CompletedDate": "2025-05-08T23:13:29.2537864+01:00",
    "DueDate": "2025-05-08T23:13:29.2537864+01:00",
    "IsActive": true,
    "DeletedByUser": "sample string 14",
    "DeletedDate": "2025-05-08T23:13:29.2537864+01:00"
  },
  {
    "DebriefID": 1,
    "Driver": "sample string 2",
    "SupervisorUser": "sample string 3",
    "CreatedDate": "2025-05-08T23:13:29.2487831+01:00",
    "DataFrom": "2025-05-08T23:13:29.2487831+01:00",
    "DataTo": "2025-05-08T23:13:29.2487831+01:00",
    "DebriefReason": "sample string 7",
    "DebriefStatus": "sample string 8",
    "DebrieferUser": "sample string 9",
    "DriverComments": "sample string 10",
    "DebrieferComments": "sample string 11",
    "CompletedDate": "2025-05-08T23:13:29.2537864+01:00",
    "DueDate": "2025-05-08T23:13:29.2537864+01:00",
    "IsActive": true,
    "DeletedByUser": "sample string 14",
    "DeletedDate": "2025-05-08T23:13:29.2537864+01:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDebrief xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Debrief>
    <DebriefID>1</DebriefID>
    <Driver>sample string 2</Driver>
    <SupervisorUser>sample string 3</SupervisorUser>
    <CreatedDate>2025-05-08T23:13:29.2487831+01:00</CreatedDate>
    <DataFrom>2025-05-08T23:13:29.2487831+01:00</DataFrom>
    <DataTo>2025-05-08T23:13:29.2487831+01:00</DataTo>
    <DebriefReason>sample string 7</DebriefReason>
    <DebriefStatus>sample string 8</DebriefStatus>
    <DebrieferUser>sample string 9</DebrieferUser>
    <DriverComments>sample string 10</DriverComments>
    <DebrieferComments>sample string 11</DebrieferComments>
    <CompletedDate>2025-05-08T23:13:29.2537864+01:00</CompletedDate>
    <DueDate>2025-05-08T23:13:29.2537864+01:00</DueDate>
    <IsActive>true</IsActive>
    <DeletedByUser>sample string 14</DeletedByUser>
    <DeletedDate>2025-05-08T23:13:29.2537864+01:00</DeletedDate>
  </Debrief>
  <Debrief>
    <DebriefID>1</DebriefID>
    <Driver>sample string 2</Driver>
    <SupervisorUser>sample string 3</SupervisorUser>
    <CreatedDate>2025-05-08T23:13:29.2487831+01:00</CreatedDate>
    <DataFrom>2025-05-08T23:13:29.2487831+01:00</DataFrom>
    <DataTo>2025-05-08T23:13:29.2487831+01:00</DataTo>
    <DebriefReason>sample string 7</DebriefReason>
    <DebriefStatus>sample string 8</DebriefStatus>
    <DebrieferUser>sample string 9</DebrieferUser>
    <DriverComments>sample string 10</DriverComments>
    <DebrieferComments>sample string 11</DebrieferComments>
    <CompletedDate>2025-05-08T23:13:29.2537864+01:00</CompletedDate>
    <DueDate>2025-05-08T23:13:29.2537864+01:00</DueDate>
    <IsActive>true</IsActive>
    <DeletedByUser>sample string 14</DeletedByUser>
    <DeletedDate>2025-05-08T23:13:29.2537864+01:00</DeletedDate>
  </Debrief>
</ArrayOfDebrief>