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": "838bdc15-3b4e-4166-bc7e-109ded832c5d",
"DisplayName": "sample string 2",
"PriceListItem": {
"RowGuid": "7a83ae3d-f2d7-4c19-9dd1-00557cd10200",
"SeatGroup": {
"RowGuid": "8dcce8d0-398a-4073-b9e7-e56bbfc0b597",
"Name": "sample string 2",
"AvailableSeats": 3,
"Sort": 1
},
"PriceCategory": {
"RowGuid": "69e5b2ad-94b5-4914-99c8-5de90ac98081",
"Name": "sample string 2",
"Sort": 1
},
"Price": 2.0,
"ReservationCost": 3.0
}
},
{
"RowGuid": "838bdc15-3b4e-4166-bc7e-109ded832c5d",
"DisplayName": "sample string 2",
"PriceListItem": {
"RowGuid": "7a83ae3d-f2d7-4c19-9dd1-00557cd10200",
"SeatGroup": {
"RowGuid": "8dcce8d0-398a-4073-b9e7-e56bbfc0b597",
"Name": "sample string 2",
"AvailableSeats": 3,
"Sort": 1
},
"PriceCategory": {
"RowGuid": "69e5b2ad-94b5-4914-99c8-5de90ac98081",
"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>69e5b2ad-94b5-4914-99c8-5de90ac98081</RowGuid>
<Sort>1</Sort>
</PriceCategory>
<ReservationCost>3</ReservationCost>
<RowGuid>7a83ae3d-f2d7-4c19-9dd1-00557cd10200</RowGuid>
<SeatGroup>
<AvailableSeats>3</AvailableSeats>
<Name>sample string 2</Name>
<RowGuid>8dcce8d0-398a-4073-b9e7-e56bbfc0b597</RowGuid>
<Sort>1</Sort>
</SeatGroup>
</PriceListItem>
<RowGuid>838bdc15-3b4e-4166-bc7e-109ded832c5d</RowGuid>
</Seat>
<Seat>
<DisplayName>sample string 2</DisplayName>
<PriceListItem>
<Price>2</Price>
<PriceCategory>
<Name>sample string 2</Name>
<RowGuid>69e5b2ad-94b5-4914-99c8-5de90ac98081</RowGuid>
<Sort>1</Sort>
</PriceCategory>
<ReservationCost>3</ReservationCost>
<RowGuid>7a83ae3d-f2d7-4c19-9dd1-00557cd10200</RowGuid>
<SeatGroup>
<AvailableSeats>3</AvailableSeats>
<Name>sample string 2</Name>
<RowGuid>8dcce8d0-398a-4073-b9e7-e56bbfc0b597</RowGuid>
<Sort>1</Sort>
</SeatGroup>
</PriceListItem>
<RowGuid>838bdc15-3b4e-4166-bc7e-109ded832c5d</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. |