Hi All, I am trying to use REST web services to tr...
# integrations
b
Hi All, I am trying to use REST web services to transform Sales Orders into Return Authorizations. We've had success returning entire orders, but now we are looking to specify line items on the order to return. My attempts at formatting the body payload have resulted in a 400 error: [{"detail":"Error while accessing a resource. Please choose an item to add.","o:errorPath":"item.items[0]","o:errorCode":"USER_ERROR"}] using the below payload. {     "item": {         "items": [             {                 "orderDoc" : {"id" : 123},                 "orderLine" : 1,                 "item" : {"id" : 123},                 "quantity" : 1             }         ]     } } Any help or insight would be greatly appreciated!