A batch request, comprised of one or more request elements.
| name | data type | description | 
|---|---|---|
| items | array of ApiBatchRequestElement | 
Example
{
  "items" : [ {
    "method" : "GET",
    "url" : "...",
    "body" : { },
    "contentType" : "...",
    "acceptType" : "..."
  }, {
    "method" : "PUT",
    "url" : "...",
    "body" : { },
    "contentType" : "...",
    "acceptType" : "..."
  } ]
}