parts payload for create
Content
hello - I have a integration between OIC and VBCS. VBCS has REST enabled Business Object and my sample payload below creates 2 records in BO when invoked from Postman. I have following 2 questions how to invoke same from OIC.
I appreciate a sample blog, video that creates multiple records from OIC ( like one depicts say for-each, Mapping.. of parts )
I got following working in Postman it created 2 records in BO.
{
"parts": [
{
"id": "part1",
"path": "/MYDATA",
"operation": "create",
"payload": {
"myId": "1234",
"firstName": "Joe",
"lastName": "Bush"
}
}
,
{"id": "part2",
"path": "/MYDATA",
"operation": "create",
"payload": {
"myId": "6789",
"firstName": "John",
"lastName": "Hooper"
}
}
]
}
1> should I be giving OIC team REST end point that DOES Not have BO name at the end ? ( like it ends with data ) ?
0