GET api/AlertisApi/GetAppointmentByName?name={name}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AppointmentDTO
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Start

date

None.

HasAgreedToSafetyRegulations

boolean

None.

CarrierId

integer

None.

CarrierEmail

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 1",
    "Start": "2026-06-12T20:29:17.7448319+00:00",
    "HasAgreedToSafetyRegulations": true,
    "CarrierId": 1,
    "CarrierEmail": "sample string 4"
  },
  {
    "Id": 1,
    "Name": "sample string 1",
    "Start": "2026-06-12T20:29:17.7448319+00:00",
    "HasAgreedToSafetyRegulations": true,
    "CarrierId": 1,
    "CarrierEmail": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAppointmentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alertis.Model.DTO">
  <AppointmentDTO>
    <CarrierEmail>sample string 4</CarrierEmail>
    <CarrierId>1</CarrierId>
    <HasAgreedToSafetyRegulations>true</HasAgreedToSafetyRegulations>
    <Id>1</Id>
    <Name>sample string 1</Name>
    <Start xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2026-06-12T20:29:17.7448319Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </Start>
  </AppointmentDTO>
  <AppointmentDTO>
    <CarrierEmail>sample string 4</CarrierEmail>
    <CarrierId>1</CarrierId>
    <HasAgreedToSafetyRegulations>true</HasAgreedToSafetyRegulations>
    <Id>1</Id>
    <Name>sample string 1</Name>
    <Start xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2026-06-12T20:29:17.7448319Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
    </Start>
  </AppointmentDTO>
</ArrayOfAppointmentDTO>