Closed scottweedon closed 7 years ago
Are you asking about multiple ItemId's in the request or on the response? A specific example Soap message/xml and JSON object would be helpful.
For the request, the element you want multiples of is the one that should contain the array. Using the example request you provided, you want multiple "ItemId" elements so the JSON object would need to look like this:
{
ItemIds:{
ItemId:[
{attributes:{Id:"AAMkAGYzZjZmRiUsidkC+NAAAAY89GAAA="}},
{attributes:{Id:"AAMkAGYzZjZmRiUsidkC+NAAAAY89FAAA="}},
{attributes:{Id:"AAMkAGYzZjZmRiUsidkC+NAAAAY87NAAA="}},
]
}
}
Closing due to inactivity.
Take the below Soap request. I believe when this is converted into a JSON object the value of ItemId.Id is always the last listed item.