"result":
{
"results":
[{
"common":
{
"resultCode": "0", //0 if ok otherwise specific error of the webhook
"errorMessage": "" //if resultCode <>0, text of the error in english (V1)
},
"response":
{
"maxElementAtOnce": "10" // max elements that can be passed at once
"data":
[{
"action": "value", // inserted or updated
"xxxxx_ID": "value", // with xxxxx = table and value is ID created/updated
"codexxxxx": "value" // with xxxx = table and value is code created/updated
}]
}
},
{
"common":
{
"resultCode": "0",
"errorMessage": ""
},
"response":
{
"maxElementAtOnce": "10" // max elements that can be passed at once
"data":
[{
"action": "value",
"xxxxx_ID": "value",
"codexxxxx": "value"
}]
}
},
{
...
}]
} |