Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2acb9c6
docs: Add links to correct monetization docs
patrikbraborec Sep 22, 2025
659aab5
docs: Fix vale error
patrikbraborec Sep 22, 2025
700fe94
docs: Improve PPE examples, and add PPR vs PPE section
patrikbraborec Sep 24, 2025
37bc453
docs: Improve synthetic start docs
patrikbraborec Sep 24, 2025
217d341
docs: Remove PPR store visibility
patrikbraborec Sep 24, 2025
f493b6a
docs: Synthetic start event improvements
patrikbraborec Sep 24, 2025
ee82af0
docs: Fix lint errors
patrikbraborec Sep 24, 2025
ba9a158
docs: Fix lint errors
patrikbraborec Sep 24, 2025
b0c5662
docs: Fix lint errors
patrikbraborec Sep 24, 2025
91246ae
docs: Remove unncessary sentence
patrikbraborec Sep 24, 2025
db2abc1
docs: Improve sentece regarding to free compute
patrikbraborec Sep 24, 2025
b0bef86
Update apify-api/openapi/paths/actor-runs/actor-runs@{runId}@charge.yaml
patrikbraborec Sep 24, 2025
27d5fd5
docs: update actor tagged builds manually (#1945)
lewis-wow Sep 25, 2025
96ec0ca
fix: remove unused dependencies from `package.json` (#1953)
Copilot Sep 29, 2025
2accfa7
docs: improve text for arge charge for invalid input
patrikbraborec Sep 29, 2025
ca3a611
Update sources/platform/actors/publishing/monetize/pay_per_event.mdx
patrikbraborec Sep 29, 2025
ee8dd3b
Update sources/platform/actors/publishing/monetize/pay_per_event.mdx
patrikbraborec Sep 29, 2025
4f8fda3
docs: Improve docs based on feedback
patrikbraborec Sep 29, 2025
9649ded
docs: remove unused example
patrikbraborec Sep 29, 2025
82b0ffb
docs: Fix broken link
patrikbraborec Sep 29, 2025
a87138b
Apply suggestions from code review
patrikbraborec Sep 30, 2025
0aac4f1
Update sources/platform/actors/publishing/monetize/pay_per_event.mdx
patrikbraborec Sep 30, 2025
8e25c8f
docs: Add signature query parameter to docs of relevant endpoints (#1…
Pijukatel Sep 29, 2025
39be029
chore(deps): update dependency typescript to v5.9.3
renovate[bot] Oct 1, 2025
148ca1a
docs: Improve Academy text regarding to Rental, PPR and PPE (#1947)
patrikbraborec Oct 1, 2025
6cf2de2
docs: Rebase and PR comments
patrikbraborec Oct 1, 2025
8c5b826
docs: Make example italic
patrikbraborec Oct 1, 2025
f287cf8
docs: Improve API docs
patrikbraborec Oct 1, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,24 @@ properties:
oneOf:
- nullable: true
- $ref: ./DefaultRunOptions.yaml
taggedBuilds:
type: object
description: |
Object containing the Actor's tagged builds, where the key is the tag name (e.g., _latest_) and the value is an object containing the build ID.
The object you provide will completely overwrite all existing tagged builds for the Actor.

- To create or reassign a tag: Include it in the object with the desired `buildId`.
- To remove a specific tag: Submit the object without that tag's key.
- To remove all tags: Provide an empty object: `{}`.
- If this field is omitted or `null`, the existing tags will not be changed.
nullable: true
additionalProperties:
type: object
required:
- buildId
properties:
buildId:
type: string
example:
latest:
buildId: z2EryhbfhgSyqj6Hn
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ post:
The event you are charging for must be one of the configured events in your Actor. If the Actor is not set up as pay per event, or if the event is not configured,
the endpoint will return an error. The endpoint must be called from the Actor run itself, with the same API token that the run was started with.

:::info Learn more about pay-per-event pricing

For more details about pay-per-event (PPE) pricing, refer to our [PPE documentation](/platform/actors/publishing/monetize/pay-per-event).

:::

operationId: PostChargeRun
parameters:
- name: runId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,14 @@ get:
schema:
type: boolean
example: false
- name: signature
in: query
description: Signature used to access the items.
required: false
style: simple
schema:
type: string
example: 2wTI46Bg8qWQrV7tavlPI
responses:
'200':
description: ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ get:
schema:
type: string
example: post-images-
- name: signature
in: query
description: Signature used to access the keys.
required: false
style: simple
schema:
type: string
example: 2wTI46Bg8qWQrV7tavlPI
responses:
'200':
description: ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ get:
schema:
type: string
example: someKey
- name: signature
in: query
description: Signature used to access the record.
required: false
style: simple
schema:
type: string
example: 2wTI46Bg8qWQrV7tavlPI
responses:
'200':
description: ''
Expand Down
Loading
Loading