POST api/SeatPlan/Image?guid={guid}&channel={channel}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| guid | globally unique identifier |
Required |
|
| channel | SalesChannel |
Required |
Body Parameters
Collection of Seat| Name | Description | Type | Additional information |
|---|---|---|---|
| RowGuid | globally unique identifier |
None. |
|
| DisplayName | string |
None. |
|
| PriceListItem | PriceListItem |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"RowGuid": "e88337bf-4fb5-4c1d-9287-9f93fa242c34",
"DisplayName": "sample string 2",
"PriceListItem": {
"RowGuid": "afe8f814-fb93-48fe-a1aa-6207f9d419a2",
"SeatGroup": {
"RowGuid": "174192bf-e11e-4a9b-ad6b-0c7b9cb26407",
"Name": "sample string 2",
"AvailableSeats": 3,
"Sort": 1
},
"PriceCategory": {
"RowGuid": "e04845c7-c962-42e0-b12a-b649bff32608",
"Name": "sample string 2",
"Sort": 1
},
"Price": 2.0,
"ReservationCost": 3.0
}
},
{
"RowGuid": "e88337bf-4fb5-4c1d-9287-9f93fa242c34",
"DisplayName": "sample string 2",
"PriceListItem": {
"RowGuid": "afe8f814-fb93-48fe-a1aa-6207f9d419a2",
"SeatGroup": {
"RowGuid": "174192bf-e11e-4a9b-ad6b-0c7b9cb26407",
"Name": "sample string 2",
"AvailableSeats": 3,
"Sort": 1
},
"PriceCategory": {
"RowGuid": "e04845c7-c962-42e0-b12a-b649bff32608",
"Name": "sample string 2",
"Sort": 1
},
"Price": 2.0,
"ReservationCost": 3.0
}
}
]
application/xml, text/xml
Sample:
<ArrayOfSeat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RoodFluweel.Api.Models">
<Seat>
<DisplayName>sample string 2</DisplayName>
<PriceListItem>
<Price>2</Price>
<PriceCategory>
<Name>sample string 2</Name>
<RowGuid>e04845c7-c962-42e0-b12a-b649bff32608</RowGuid>
<Sort>1</Sort>
</PriceCategory>
<ReservationCost>3</ReservationCost>
<RowGuid>afe8f814-fb93-48fe-a1aa-6207f9d419a2</RowGuid>
<SeatGroup>
<AvailableSeats>3</AvailableSeats>
<Name>sample string 2</Name>
<RowGuid>174192bf-e11e-4a9b-ad6b-0c7b9cb26407</RowGuid>
<Sort>1</Sort>
</SeatGroup>
</PriceListItem>
<RowGuid>e88337bf-4fb5-4c1d-9287-9f93fa242c34</RowGuid>
</Seat>
<Seat>
<DisplayName>sample string 2</DisplayName>
<PriceListItem>
<Price>2</Price>
<PriceCategory>
<Name>sample string 2</Name>
<RowGuid>e04845c7-c962-42e0-b12a-b649bff32608</RowGuid>
<Sort>1</Sort>
</PriceCategory>
<ReservationCost>3</ReservationCost>
<RowGuid>afe8f814-fb93-48fe-a1aa-6207f9d419a2</RowGuid>
<SeatGroup>
<AvailableSeats>3</AvailableSeats>
<Name>sample string 2</Name>
<RowGuid>174192bf-e11e-4a9b-ad6b-0c7b9cb26407</RowGuid>
<Sort>1</Sort>
</SeatGroup>
</PriceListItem>
<RowGuid>e88337bf-4fb5-4c1d-9287-9f93fa242c34</RowGuid>
</Seat>
</ArrayOfSeat>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |