Combine multiple requests in one HTTP call using JSON batching
JSON batching allows you to optimize your application by combining multiple requests (up to 20) into a single JSON object. For example, a client might want to compose a view of unrelated data such as:
- An image stored in OneDrive
- A list of Planner tasks
- The calendar for a group
Combining these three individual requests into a single batch request can save the application significant network latency.
Microsoft Graph implements the $batch
OData URL path segment to support JSON batching.
First JSON batch request
First you construct the JSON batch request for the previous example. In this scenario, the individual requests are not interdependent in any way and therefore can be placed into the batch request in any order.
POST https://graph.microsoft.com/v1.0/$batch
Accept: application/json
Content-Type: application/json
{
"requests": [
{
"id": "1",
"method": "GET",
"url": "/me/drive/root:/{file}:/content"
},
{
"id": "2",
"method": "GET",
"url": "/me/planner/tasks"
},
{
"id": "3",
"method": "GET",
"url": "/groups/{id}/events"
},
{
"id": "4",
"url": "/me",
"method": "PATCH",
"body": {
"city" : "Redmond"
},
"headers": {
"Content-Type": "application/json"
}
},
{
"id": "5",
"url": "users?$select=id,displayName,userPrincipalName&$filter=city eq null&$count=true",
"method": "GET",
"headers": {
"ConsistencyLevel": "eventual"
}
}
]
}
Responses to the batched requests might appear in a different order. The id property can be used to correlate individual requests and responses.
200 OK
Content-Type: application/json
{
"responses": [
{
"id": "1",
"status": 302,
"headers": {
"location": "https://b0mpua-by3301.files.1drv.com/y23vmagahszhxzlcvhasdhasghasodfi"
}
},
{
"id": "3",
"status": 401,
"body": {
"error": {
"code": "Forbidden",
"message": "..."
}
}
},
{
"id": "5",
"status": 200,
"headers": {
"OData-Version": "4.0",
},
"body": {
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users(id,displayName,userPrincipalName)",
"@odata.count": 12,
"value": [
{
"id": "071cc716-8147-4397-a5ba-b2105951cc0b",
"displayName": "Adele Vance",
"userPrincipalName": "AdeleV@Contoso.com"
}
]
}
},
{
"id": "2",
"status": 200,
"body": {
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.plannerTask)",
"value": []
}
},
{
"id": "4",
"status": 204,
"body": null
}
]
}
Request format
Batch requests are always sent using a POST to the /$batch
endpoint.
A JSON batch request body consists of a single JSON object with one required property: requests. The requests property is a collection of individual requests. For each individual request, the following properties can be passed.
Property | Description |
---|---|
id | Required. String. A correlation value to associate individual responses with requests. This value allows the server to process requests in the batch in the most efficient order. Not case-sensitive. |
method | Required. The HTTP method. |
url | Required. The relative resource URL the individual request would typically be sent to. Therefore, while the absolute URL is https://graph.microsoft.com/v1.0/users , this url is /users . |
headers | Optional but required when the body is specified. A JSON object with the key/value pair for the headers. For example, when the ConsistencyLevel header is required, this property would be represented as "headers": {"ConsistencyLevel": "eventual"} . When the body is supplied, a Content-Type header must be included. |
body | Optional. Might be a JSON object or a base64 URL-encoded value for example, when the body is an image. When a body is included with the request, the headers object must contain a value for Content-Type. |
Response format
The response format for JSON batch requests is similar to the request format. The following are the key differences:
- The property in the main JSON object is named responses as opposed to requests.
- Individual responses might appear in a different order than the requests.
- Rather than method and url, individual responses have a status property. The value of status is a number that represents the HTTP status code.
- The headers property in each individual response represents the headers returned by the server, for example, Cache-Control and Content-Type headers.
The status code on a batch response is typically 200
or 400
. If the batch request itself is malformed, the status code is 400
. If the batch request is parseable, the status code is 200
. A 200
status code on the batch response does not indicate that the individual requests inside the batch succeeded. This is why each individual response in the responses property has a status code.
Sequencing requests with the dependsOn property
Individual requests can be executed in a specified order by using the dependsOn property. This property is an array of strings that references the id of a different individual request. For this reason, the values for id must be unique. For example, in the following request, the client is specifying that requests should be run in the order request 1 then request 2, then request 4, then request 3.
{
"requests": [
{
"id": "1",
"method": "GET",
"url": "..."
},
{
"id": "2",
"dependsOn": [ "1" ],
"method": "GET",
"url": "..."
},
{
"id": "4",
"dependsOn": [ "2" ],
"method": "GET",
"url": "..."
},
{
"id": "3",
"dependsOn": [ "4" ],
"method": "GET",
"url": "..."
}
]
}
If an individual request fails, any request that depends on that request fails with status code 424
(Failed Dependency).
Tip
Batch should be either fully sequential or fully parallel.
Bypassing URL length limitations with batching
An additional use case for JSON batching is to bypass URL length limitations. In cases where the filter clause is complex, the URL length might surpass limitations built into browsers or other HTTP clients. You can use JSON batching as a workaround for running these requests because the lengthy URL simply becomes part of the request payload.
Batch size limitations
JSON batch requests are currently limited to 20 individual requests in addition to the following limitations:
- Depending on the APIs that are part of the batch request, the underlying services impose their own throttling limits that affect applications that use Microsoft Graph to access them.
- Requests in a batch are evaluated individually against throttling limits and if any request exceeds the limits, it fails with a status of
429
.
For more information, see Throttling and batching.
Known issues
For a list of current limitations related to batching, see known issues.
See also
For more information about the JSON batch request/response format, see the OData JSON Format Version 4.01 specification, section Batch Requests and Responses.
Feedback
Submit and view feedback for