GET api/WorkOrders/{id}/IVRLog

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None

Response Information

Resource Description

Collection of ExternalIVRCheckInOut
NameDescriptionTypeAdditional information
Vendor

string None.
NumberOfTechnicians

integer None.
CheckInDateTime

date None.
CheckOutDateTime

date None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Vendor": "sample string 1",
    "NumberOfTechnicians": 2,
    "CheckInDateTime": "2025-04-30T02:04:08.0710369Z",
    "CheckOutDateTime": "2025-04-30T02:04:08.0710369Z"
  },
  {
    "Vendor": "sample string 1",
    "NumberOfTechnicians": 2,
    "CheckInDateTime": "2025-04-30T02:04:08.0710369Z",
    "CheckOutDateTime": "2025-04-30T02:04:08.0710369Z"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExternalIVRCheckInOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlESI.FMPilot.Core.Entities.WorkOrder">
  <ExternalIVRCheckInOut>
    <CheckInDateTime>2025-04-30T02:04:08.0710369+00:00</CheckInDateTime>
    <CheckOutDateTime>2025-04-30T02:04:08.0710369+00:00</CheckOutDateTime>
    <NumberOfTechnicians>2</NumberOfTechnicians>
    <Vendor>sample string 1</Vendor>
  </ExternalIVRCheckInOut>
  <ExternalIVRCheckInOut>
    <CheckInDateTime>2025-04-30T02:04:08.0710369+00:00</CheckInDateTime>
    <CheckOutDateTime>2025-04-30T02:04:08.0710369+00:00</CheckOutDateTime>
    <NumberOfTechnicians>2</NumberOfTechnicians>
    <Vendor>sample string 1</Vendor>
  </ExternalIVRCheckInOut>
</ArrayOfExternalIVRCheckInOut>