GET api/AppointmentConfirmations

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AppointmentConfirmation
NameDescriptionTypeAdditional information
CustomerNumber

string

None.

Package

string

None.

AppointmentId

string

Required

ConfirmationStatus

string

Required

ConfirmationMessage

string

None.

ConfirmationSource

string

Required

OperationTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerNumber": "sample string 1",
    "Package": "sample string 2",
    "AppointmentId": "sample string 3",
    "ConfirmationStatus": "sample string 4",
    "ConfirmationMessage": "sample string 5",
    "ConfirmationSource": "sample string 6",
    "OperationTime": "2025-12-16T00:51:42.7191291+00:00"
  },
  {
    "CustomerNumber": "sample string 1",
    "Package": "sample string 2",
    "AppointmentId": "sample string 3",
    "ConfirmationStatus": "sample string 4",
    "ConfirmationMessage": "sample string 5",
    "ConfirmationSource": "sample string 6",
    "OperationTime": "2025-12-16T00:51:42.7191291+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAppointmentConfirmation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScheduledJobModels">
  <AppointmentConfirmation>
    <AppointmentId>sample string 3</AppointmentId>
    <ConfirmationMessage>sample string 5</ConfirmationMessage>
    <ConfirmationSource>sample string 6</ConfirmationSource>
    <ConfirmationStatus>sample string 4</ConfirmationStatus>
    <CustomerNumber>sample string 1</CustomerNumber>
    <OperationTime>2025-12-16T00:51:42.7191291+00:00</OperationTime>
    <Package>sample string 2</Package>
  </AppointmentConfirmation>
  <AppointmentConfirmation>
    <AppointmentId>sample string 3</AppointmentId>
    <ConfirmationMessage>sample string 5</ConfirmationMessage>
    <ConfirmationSource>sample string 6</ConfirmationSource>
    <ConfirmationStatus>sample string 4</ConfirmationStatus>
    <CustomerNumber>sample string 1</CustomerNumber>
    <OperationTime>2025-12-16T00:51:42.7191291+00:00</OperationTime>
    <Package>sample string 2</Package>
  </AppointmentConfirmation>
</ArrayOfAppointmentConfirmation>