Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apis/AnalysesCoreApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,7 @@ export class AnalysesCoreApiResponseProcessor {
ObjectSerializer.parse(await response.body.text(), contentType),
"BaseResponse", ""
) as BaseResponse;
throw new ApiException<BaseResponse>(response.httpStatusCode, "Invalid request parameters", body, response.headers);
throw new ApiException<BaseResponse>(response.httpStatusCode, "Unprocessable Entity", body, response.headers);
}
if (isCodeInRange("404", response.httpStatusCode)) {
const body: BaseResponse = ObjectSerializer.deserialize(
Expand Down
2 changes: 1 addition & 1 deletion docs/AnalysesCoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ Name | Type | Description | Notes
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**201** | Successful Response | - |
**422** | Invalid request parameters | - |
**422** | Unprocessable Entity | - |
**404** | Not Found | - |
**400** | Bad Request | - |

Expand Down