Rest API - Rate Limiting and Throttling
Given this REST API response code snippet:
What will be the HTTP status if serviceA fails?
if (serviceA.failed) {
return { data: partialData, status: 206 };
} else {
return { data: fullData, status: 200 };
}What will be the HTTP status if serviceA fails?
