With the $batch query option, it is possible to execute more then one GET command with one request.
If you need multiple requests, use $batch for faster response.
POST format, JSON format
{
"id-a","get-command",
"id-b","get-format"
}
returns
{
"id-a",{result},
"id-b",{result}
}
Define the Id for each command. See the same Id and the value in the result.
Limitations:
• | Works only for odata4 format, the system does not read header information. Define all in the get command. |
• | Works only for GET commands. |