Rest API - Batch and Bulk Operations
You receive this HTTP response code and body from a batch update API:
HTTP/1.1 207 Multi-Status
{
"results": [
{"item": "A", "status": "success"},
{"item": "B", "status": "fail", "error": "Timeout"}
]
}
What is the main issue in this response?