PUT api/Basket
Makes a request to add items to the basket.
Request Information
URI Parameters
None.
Body Parameters
BasketRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemId | globally unique identifier |
None. |
|
| ItemGroups | Collection of BasketItemGroupRequest |
None. |
|
| PackageId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"itemId": "b01ce73e-1375-4ad7-9791-222d01c8be7d",
"itemGroups": [
{
"concessionId": "44e08795-2881-4a24-8275-bb3054431e11",
"productId": "543fbf2d-cdbd-461c-9498-0094a949094e",
"quantity": 3,
"price": 4.0
},
{
"concessionId": "44e08795-2881-4a24-8275-bb3054431e11",
"productId": "543fbf2d-cdbd-461c-9498-0094a949094e",
"quantity": 3,
"price": 4.0
}
],
"packageId": "420a5163-4678-46c4-8d46-acde8940f798"
}
Response Information
Resource Description
BasketRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemId | globally unique identifier |
None. |
|
| ItemGroups | Collection of BasketItemGroupRequest |
None. |
|
| PackageId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"itemId": "43c14b01-8ecf-4ede-8053-62a2bf3d4589",
"itemGroups": [
{
"concessionId": "185b5de2-ba13-4b02-8aae-a78dcbb22a68",
"productId": "f04a4ff8-8462-4524-a428-b99515e45fd8",
"quantity": 3,
"price": 4.0
},
{
"concessionId": "185b5de2-ba13-4b02-8aae-a78dcbb22a68",
"productId": "f04a4ff8-8462-4524-a428-b99515e45fd8",
"quantity": 3,
"price": 4.0
}
],
"packageId": "b2b36ae8-03db-4286-99b9-9cab3c033599"
}