You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
679 B

{
"id": "basket-add-item",
"type": "http",
"httpMethod": "post",
"arguments": [
{
"name": "buyerId",
"required": true,
"type": "guid"
},
{
"name": "item-1",
"required": true,
"type": "object"
},
{
"name": "item-2",
"required": true,
"type": "object"
},
{
"name": "item-3",
"required": true,
"type": "object"
}
],
"requestPayload": {
"type": "json",
"content": {
"buyerId": "{{buyerId}}",
"items": [
"{{item-1}}",
"{{item-2}}",
"{{item-3}}"
]
}
},
"url": "http://localhost:5101/catalog-api/api/v1/Basket"
}