diff --git a/sources/platform/actors/running/actor_standby.md b/sources/platform/actors/running/actor_standby.md index 89a3fdd2a7..95b2599e7d 100644 --- a/sources/platform/actors/running/actor_standby.md +++ b/sources/platform/actors/running/actor_standby.md @@ -50,6 +50,11 @@ This approach can be useful if you cannot modify the request headers. https://rag-web-browser.apify.actor/search?query=apify&token=my_apify_token ``` +:::tip +You can use [scoped tokens](/platform/integrations/api#limited-permissions) to send standby requests. This is useful for allowing third-party services to interact with your Actor without granting access to your entire account. + +However, [restricting what an Actor can access](/platform/integrations/api#restricted-access-restrict-what-actors-can-access-using-the-scope-of-this-actor) using a scoped token is not supported when running in Standby mode. +::: ## Can I still run the Actor in normal mode diff --git a/sources/platform/integrations/programming/api.md b/sources/platform/integrations/programming/api.md index 27c45a138a..67be76d4ad 100644 --- a/sources/platform/integrations/programming/api.md +++ b/sources/platform/integrations/programming/api.md @@ -140,6 +140,9 @@ When you run an Actor with a scoped token in this mode, Apify will inject a toke This way you can be sure that Actors won't accidentally—or intentionally—access any data they shouldn't. However, Actors might not function properly if the scope is not sufficient. +:::caution +Restricted access mode is not supported for Actors running in [Standby mode](/platform/actors/running/standby). While you can send standby requests using a scoped token configured with restricted access, functionality is not guaranteed. + :::tip This restriction is _transitive_, which means that if the Actor runs another Actor, its access will be restricted as well. :::