Rest API - Batch and Bulk Operations
Given this partial success JSON response, what is the status of item with ID 3?
{
"responses": [
{"id": 1, "status": "success"},
{"id": 2, "status": "failure", "error": "Invalid data"},
{"id": 3, "status": "success"}
]
}