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
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ put:
write permission to the task's Actor.

To publish a task, its Actor must be public, `publicConfig.inputSchemaFields` and
`publicConfig.datasetView` must be set, and the Actor must have fewer than 50 published
tasks. If the task isn't ready to be published, the whole update fails and none of it
is applied.
`publicConfig.datasetView` must be set, and the publishing limits must leave room for it.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd go with something like this:

To publish a task, its Actor must be public and both publicConfig.inputSchemaFields and publicConfig.datasetView must be set. Note that an Actor can have up to 10 published tasks and your account up to 100. To increase these limits, contact support. If the task doesn't meet all these conditions, the request fails and no fields are updated, including those unrelated to publishing.

By default an Actor can have up to 10 published tasks and an account up to 100; both are
defaults and can be raised per account on request. If the task isn't ready to be published,
the whole update fails and none of it is applied.

Publishing lists the task among the Actor's examples and makes its input public, so anyone
can view and copy it. The landing page itself is shown only while `publicConfig` still
Expand Down
2 changes: 1 addition & 1 deletion sources/platform/actors/publishing/publish-task.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 2

[Actor tasks](/actors/running/tasks) are shareable, pre-configured inputs for your Actors. [Publishing a task](#publish-your-tasks) creates a public landing page that shows what it does, what inputs to provide, and what output to expect. Published tasks also appear in your Actor's **Example tasks** tab, which helps users discover your Actor through search engines and AI agents. For monetized Actors, more discoverability means more paid runs.

You can create up to 50 tasks per Actor.
You can publish up to 10 tasks per Actor, and up to 100 tasks across your account. To increase these limits, [contact support](http://apify.com/contact).

## Prerequisites

Expand Down
Loading