hosting

GET /v1/sites/{siteId}/scheduled-tasks

List a site's scheduled tasks.

Все эндпоинты hosting

Вся документация для разработчиков

Аутентификация

Отправьте ключ API в качестве токена носителя (bearer token). Ключ должен иметь разрешение sites.view; ключ без него отклоняется с кодом 403, а не 404.

Этот эндпоинт не принимает идентификатор организации. Ваш ключ уже определяет организацию, к которой он принадлежит, и ответ ограничивается ее рамками.

Попробовать

Замените всё в угловых скобках на собственные значения, а плейсхолдер ключа — на ключ из вашей панели управления.

curl -X GET https://api.zinndigital.com/v1/sites/{siteId}/scheduled-tasks \
  -H "Authorization: Bearer zdk_live_…"

Вошли в систему? Консоль API в вашей панели управления автоматически подставляет реальный идентификатор вашей организации и ваш собственный ключ, а также выполняет запрос к работающему API, чтобы вы могли увидеть актуальный ответ. Откройте эту конечную точку в API-консоли

Подробнее

The cron jobs on the site's hosting package: when each runs, what it runs, whether it is paused, and where its output is mailed. schedule is the customer's own crontab expression carried verbatim — a customer who typed */15 * * * * sees exactly that back, never a normalised rewriting of it. permitted and can_create answer the two different questions a screen must distinguish before it offers an "add" button: "your plan does not include this" is not "you have used all of them". ⛔ the platform publishes scheduled tasks as a boolean capability with no count, so limit is normally unlimited and can_create follows permitted rather than an arithmetic on a ceiling nobody published. Requires sites.view and sites.panel_access — a cron row is a filesystem path plus a command run as the site's user, which is the same access the file manager that key already gates. ⭐ Available on both a resold hosting package and a site on Zinn®'s own fleet, including Footprint-Free. That matters for a footprint site in particular: WordPress's own scheduler only fires when somebody visits, and a footprint site by design has very few visitors, so its scheduled publishing and index-ping jobs would otherwise run late or not at all. Every fleet site is given a real system cron entry at deploy, and the jobs listed here are the customer's own — the platform's are held separately and are never listed, edited or deleted through this endpoint.

Параметры

ИмяТипОбязательноЧто это
siteId (path)UuidДаSite ID (UUIDv7).

Ответ

ИмяТипОбязательноЧто это
dataSiteScheduledTask[]ДаThe cron jobs on the package.
limitVendorAllowanceДаThe effective ceiling on scheduled tasks. ⛔ the platform publishes this capability as a boolean with no count, so it is normally unlimited — can_create must not be derived…
permittedbooleanДаWhether the package type includes scheduled tasks at all.
can_createbooleanДаpermitted, and the effective ceiling has room.

Ошибки, которые может возвращать этот эндпоинт

401 · 403 · 404 · 429 · 503