Rest Batch operations with BO in VB
Summary:
Hello, I would thank any help with the following.
I would like to have possibility of doing rest calls in bulk in BO's created by me in VB, using this type of payloads:
{
"parts": [
{
"id": "part1",
"path": "/",
"operation": "create",
"payload": {
"VALUE_ID": 232743,
"SERVICE": "CONTRACTS CLOUD SERVICE - HOSTED NAMED USER COUNTS",
"LEGAL_ENTITY_NAME": "AU Council Legal Entity",
"COUNTRY_CODE": "au",
"COUNTRY_NAME": "Australia",
"NUM_USERS": 4
}
},
{
"id": "part2",
"path": "/",
"operation": "create",
"payload": {
"VALUE_ID": 232743,
"SERVICE": "CONTRACTS CLOUD SERVICE - HOSTED NAMED USER COUNTS",
"LEGAL_ENTITY_NAME": "AU Council Legal Entity",
"COUNTRY_CODE": "au",
"COUNTRY_NAME": "Australia",
"NUM_USERS": 4
}
}
]
}
But I cannot see the endpoints in VB to support the operation.