GET api/Baskets?basketId={basketId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| basketId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BasketEdit| Name | Description | Type | Additional information |
|---|---|---|---|
| BasketId | integer |
None. |
|
| UserId | integer |
None. |
|
| Quantity | integer |
None. |
|
| PartNumber | string |
String length: inclusive between 0 and 20 |
|
| PartDescription | string |
String length: inclusive between 0 and 50 |
|
| OrderTypeId | integer |
None. |
|
| PartId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "2",
"basketId": 1,
"userId": 1,
"quantity": 1,
"partNumber": "sample string 2",
"partDescription": "sample string 3",
"orderTypeId": 1,
"partId": 1
},
{
"$ref": "2"
}
]