POST api/ExperienceLab/ReturnExperienceLabPersonAppointmentsList
Request Information
URI Parameters
None.
Body Parameters
GetExperienceLabPersonAppointmentsListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventExperienceValleyPersonId | string |
None. |
|
| string |
None. |
||
| LastUpdateDateTime | date |
None. |
|
| ClientVersion | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventExperienceValleyPersonId": "sample string 1",
"Email": "sample string 2",
"LastUpdateDateTime": "2025-11-05T15:20:54.3694536+01:00",
"ClientVersion": "sample string 4"
}
application/xml, text/xml
Sample:
<GetExperienceLabPersonAppointmentsListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models"> <ClientVersion>sample string 4</ClientVersion> <Email>sample string 2</Email> <LastUpdateDateTime>2025-11-05T15:20:54.3694536+01:00</LastUpdateDateTime> <EventExperienceValleyPersonId>sample string 1</EventExperienceValleyPersonId> </GetExperienceLabPersonAppointmentsListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetExperienceLabPersonAppointmentsListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of ExperienceValleyAppointmentDTO |
None. |
|
| ResponseDateTime | date |
None. |
|
| ErrorMessage | string |
None. |
|
| IsValid | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"EventExperienceValleyPersonAppointmentID": "sample string 1",
"StartTime": "2025-11-05T15:20:54.3694536+01:00",
"EndTime": "2025-11-05T15:20:54.3694536+01:00",
"DateDescription": "5 November",
"TimeDescription": "15:20 - 15:20",
"Reserved": true
},
{
"EventExperienceValleyPersonAppointmentID": "sample string 1",
"StartTime": "2025-11-05T15:20:54.3694536+01:00",
"EndTime": "2025-11-05T15:20:54.3694536+01:00",
"DateDescription": "5 November",
"TimeDescription": "15:20 - 15:20",
"Reserved": true
}
],
"ResponseDateTime": "2025-11-05T15:20:54.3694536+01:00",
"ErrorMessage": "sample string 2",
"IsValid": true
}
application/xml, text/xml
Sample:
<GetExperienceLabPersonAppointmentsListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarGroup.Models">
<ErrorMessage>sample string 2</ErrorMessage>
<IsValid>true</IsValid>
<ResponseDateTime>2025-11-05T15:20:54.3694536+01:00</ResponseDateTime>
<Items>
<ExperienceValleyAppointmentDTO>
<EndTime>2025-11-05T15:20:54.3694536+01:00</EndTime>
<EventExperienceValleyPersonAppointmentID>sample string 1</EventExperienceValleyPersonAppointmentID>
<Reserved>true</Reserved>
<StartTime>2025-11-05T15:20:54.3694536+01:00</StartTime>
</ExperienceValleyAppointmentDTO>
<ExperienceValleyAppointmentDTO>
<EndTime>2025-11-05T15:20:54.3694536+01:00</EndTime>
<EventExperienceValleyPersonAppointmentID>sample string 1</EventExperienceValleyPersonAppointmentID>
<Reserved>true</Reserved>
<StartTime>2025-11-05T15:20:54.3694536+01:00</StartTime>
</ExperienceValleyAppointmentDTO>
</Items>
</GetExperienceLabPersonAppointmentsListResponse>