| POST,OPTIONS | /v1/kiosk/appointmentcheckin |
|---|
export class KioskAppointmentCheckinResponse
{
public ResponseStatus: ResponseStatus;
public Matched: boolean;
public Name: string;
public AppointmentTime?: string;
public Position: number;
public EstWaitMinutes?: number;
public Message: string;
public constructor(init?: Partial<KioskAppointmentCheckinResponse>) { (Object as any).assign(this, init); }
}
export class KioskAppointmentCheckinRequest
{
public ApiKey: string;
public LocationId: string;
public Query: string;
public constructor(init?: Partial<KioskAppointmentCheckinRequest>) { (Object as any).assign(this, init); }
}
TypeScript KioskAppointmentCheckinRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/kiosk/appointmentcheckin HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ApiKey: 00000000000000000000000000000000,
LocationId: 00000000000000000000000000000000,
Query: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Matched: False,
Name: String,
AppointmentTime: 0001-01-01,
Position: 0,
EstWaitMinutes: 0,
Message: String
}