agency-board

PATCH /v1/agency/boards/{boardId}/automations/{ruleId}

Change a rule, or pause and resume it.

Tous les points de terminaison agency-board

Authentification

Envoyez une clé d'API en tant que jeton du porteur (bearer token). Cet endpoint n'indique pas de permission spécifique dans la spécification, attribuez donc à votre clé le minimum requis et vérifiez la réponse plutôt que de faire des suppositions.

Cet endpoint ne prend aucun identifiant d'organisation. Votre clé identifie déjà l'organisation à laquelle elle appartient, et la réponse y est limitée.

Essayer

Remplacez tout ce qui se trouve entre crochets par vos propres valeurs, et le espace réservé à la clé par une clé de votre tableau de bord.

curl -X PATCH https://api.zinndigital.com/v1/agency/boards/{boardId}/automations/{ruleId} \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "name": <string>, "trigger": <string> }'

Connecté ? La console d'API de votre tableau de bord saisit votre véritable ID d'organisation ainsi que votre propre clé, et exécute la requête sur l'API de production afin que vous puissiez voir la réponse réelle. Ouvrir ce point de terminaison dans la console API

Détails

The WHOLE rule is re-validated, not just the changed fields — a change to the trigger alone can invalidate an action that was fine before it. ⛔ `suspended` is not settable. That status means *we* paused the rule after repeated failure and carries a reason the customer has not read; letting it be written would make our decision indistinguishable from theirs. Re-enabling a suspended rule clears its failure count.

Paramètres

NomTypeObligatoireQu'est-ce que c'est
boardId (path)UuidOuiProject board ID (UUIDv7).
ruleId (path)UuidOuiAutomation rule ID (UUIDv7).

Corps de la requête

NomTypeObligatoireQu'est-ce que c'est
namestringOui
descriptionstringNon
triggerstringOui
trigger_configobjectNonPer-trigger settings, e.g. `hours_before` for "due date approaching".
conditionsBoardAutomationCondition[]NonANDed. An empty list means the rule always matches its trigger.
actionsBoardAutomationAction[]Non
statusstring<enabled, disabled>Non
positionintegerNon

Réponse

NomTypeObligatoireQu'est-ce que c'est
idUuidOuiUUIDv7 identifier — sortable by creation time (docs/02 §8).
board_idUuidOuiUUIDv7 identifier — sortable by creation time (docs/02 §8).
namestringOui
descriptionstringNon
triggerstringOui
trigger_configobjectNon
conditionsBoardAutomationCondition[]Non
actionsBoardAutomationAction[]Non
statusBoardAutomationStatusOui`suspended` means WE paused it after repeated failure and it carries a reason the customer has not read. It is a third state rather than a reuse of `disabled`, because collapsin…
positionintegerNon
run_countintegerNon
fired_countintegerNon
consecutive_failuresintegerNon
suspended_reasonstringNonWhy we paused this rule, in authored copy from a closed table — never an exception, a status or a message from our own code. The per-failure detail lives on each run (`action_re…
suspended_atstringNon
last_fired_atstringNon
last_run_atstringNon
next_due_atstringNonOnly set for a wall-clock rule. Null for a rule on a live act.
created_atstringNon
updated_atstringNon

Erreurs que cet point de terminaison peut renvoyer

401 · 403 · 404 · 422