Skip to content
Draft
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: 2 additions & 0 deletions apify-api/openapi/components/schemas/common/ErrorType.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ enum:
- expired-conference-token
- failed-to-charge-user
- final-invoice-negative
- full-permission-actor-not-approved
- github-branch-empty
- github-issue-already-exists
- github-public-key-not-found
Expand Down Expand Up @@ -297,6 +298,7 @@ enum:
- requested-dataset-view-does-not-exist
- resume-token-expired
- run-failed
- run-input-body-not-valid-json
- run-timeout-exceeded
- russia-is-evil
- same-user
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ get:
$ref: ../../components/responses/BadRequest.yaml
"403":
# It should be 404, but is 403 for backwards compatibility. https://github.com/apify/apify-core/pull/17414
description: Not found - the requested resource was not found.
# Returned both when the default build does not exist (error type `unknown-build-tag`)
# and when the caller lacks read permission for the Actor (error type `insufficient-permissions`).
description: Forbidden - insufficient permissions, or the requested resource was not found.
content:
application/json:
schema:
$ref: "../../components/schemas/common/errors/BuildErrors.yaml#/UnknownBuildTagError"
$ref: ../../components/schemas/common/ErrorResponse.yaml
"404":
$ref: ../../components/responses/NotFound.yaml
"405":
Expand Down
Loading