Skip to content

Instantly share code, notes, and snippets.

@Kevin-Bronsdijk
Last active March 21, 2016 10:33
Show Gist options
  • Save Kevin-Bronsdijk/fffb904eb7a77a0a6f2a to your computer and use it in GitHub Desktop.
Save Kevin-Bronsdijk/fffb904eb7a77a0a6f2a to your computer and use it in GitHub Desktop.
"Http": {
"conditions": [
{
"dependsOn": "GetArrayOfStringsJson"
}
],
"foreach": "@body('GetArrayOfStringsJson')",
"inputs": {
"body": "@{item()}",
"method": "POST",
"uri": "http://requestb.in/y2m1rey2"
},
"type": "Http"
}
"CallWebserviceWithProductDetails": {
"conditions": [
{
"dependsOn": "Values_GetProducts"
}
],
"foreach": "@body('Values_GetProducts')",
"inputs": {
"body": "@{item()['Id']} - @{item()['Name']}",
"method": "POST",
"uri": "http://requestb.in/y2m1rey2"
},
"type": "Http"
[
{
"Id": 1,
"Name": "Xbox One",
"Category": "Consoles",
"Price": 299
},
{
"Id": 1,
"Name": "Playstation 4",
"Category": "Consoles",
"Price": 349
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment