@@ -259,12 +259,12 @@ paths:
259259
260260 ## Sandbox test scenarios
261261
262- | Scenario | Request | Response |
263- | ------------------------- | -------------------------------- | --------------------------------------------- |
264- | Valid reference code | referenceCode=19318ZGLAB | HTTP Status 200 with QuestionnaireResponse |
265- | Invalid reference code | referenceCode=INVALID | HTTP Status 400 with error message |
266- | Missing reference code | No referenceCode parameter | HTTP Status 400 with error message |
267- | Non-existent reference | referenceCode=ABC123XY | HTTP Status 404 with error message |
262+ | Scenario | Request | Response |
263+ | --------------------------- | -------------------------- | ---------------- --------------------------------------------- |
264+ | Valid reference code | referenceCode=19318ZGLAB | HTTP Status 200 with QuestionnaireResponse |
265+ | Invalid reference code | referenceCode=INVALID | HTTP Status 400 with INVALID_REFERENCE_CODE message |
266+ | Missing reference code | No referenceCode parameter | HTTP Status 400 with MISSING_REFERENCE_CODE message |
267+ | Non-existent reference code | referenceCode=ABC123XY | HTTP Status 404 with QUESTIONNAIRE_RESPONSE_NOT_FOUND message |
268268
269269 operationId : get-questionnaire-response
270270 parameters :
@@ -295,11 +295,11 @@ paths:
295295 | HTTP status | Error code | Description |
296296 | ----------- | ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
297297 | 400 | `BAD_REQUEST` | Bad request. |
298- | 400 | `INVALID_REFERENCE_CODE` | The reference code must be alphanumeric and exactly 10 characters long. |
299- | 400 | `MISSING_REFERENCE_CODE` | The reference code is required but was not provided in the request. |
298+ | 400 | `INVALID_REFERENCE_CODE` | The reference code must be alphanumeric and exactly 10 characters long. |
299+ | 400 | `MISSING_REFERENCE_CODE` | The reference code is required but was not provided in the request. |
300300 | 401 | `ACCESS_DENIED` | Missing or invalid OAuth 2.0 bearer token in request. |
301301 | 403 | `FORBIDDEN` | Access denied to resource. |
302- | 404 | `QUESTIONNAIRE_RESPONSE_NOT_FOUND` | No questionnaire response was found for the provided reference code. |
302+ | 404 | `QUESTIONNAIRE_RESPONSE_NOT_FOUND` | No questionnaire response was found for the provided reference code. |
303303 | 404 | `INVALIDATED_RESOURCE` | Resource that has been marked as invalid was requested - invalid resources cannot be retrieved |
304304 | 405 | `METHOD_NOT_ALLOWED` | The method is not allowed. |
305305 | 408 | `TIMEOUT` | Request timed out. |
0 commit comments