Hi, I recently validating the GET ServiceRequest endpoint with _id param and
found that it allows multiple ids with comma separated but i doesn't found the max number of id's accepted in this parameter at once in api doc.
While trying multiple scenario i realize that it allows 100 max ids, can anyone confirm is my understanding is correct or it rejects requests based on payload size?
Error returned after 100 ids used comma separated.
400 Bad Request
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "invalid",
"details": {
"text": "Invalid request"
}
}
]
}
Thanks,
Pravin