INTEGRITY Cloudflare Docs

Workflows

Manage and configure Workflows using Wrangler.

workflows list

List Workflows associated to account

npx wrangler workflows list

Global flags

workflows describe

Describe Workflow resource

npx wrangler workflows describe [NAME]

Global flags

workflows delete

Delete workflow - when deleting a workflow, it will also delete it's own instances

npx wrangler workflows delete [NAME]

Global flags

workflows trigger

Trigger a workflow, creating a new instance. Can optionally take a JSON string to pass a parameter into the workflow instance

npx wrangler workflows trigger [NAME] [PARAMS]

Global flags

workflows instances list

Instance related commands (list, describe, terminate, pause, resume)

npx wrangler workflows instances list [NAME]

Global flags

workflows instances describe

Describe a workflow instance - see its logs, retries and errors

npx wrangler workflows instances describe [NAME] [ID]

Global flags

workflows instances send-event

Send an event to a workflow instance

npx wrangler workflows instances send-event [NAME] [ID]

Global flags

workflows instances terminate

Terminate a workflow instance

npx wrangler workflows instances terminate [NAME] [ID]

Global flags

workflows instances restart

Restart a workflow instance

npx wrangler workflows instances restart [NAME] [ID]

Global flags

workflows instances pause

Pause a workflow instance

npx wrangler workflows instances pause [NAME] [ID]

Global flags

workflows instances resume

Resume a workflow instance

npx wrangler workflows instances resume [NAME] [ID]

Global flags

workflows instances delete

Delete workflow instances

npx wrangler workflows instances delete [NAME] [ID]

Global flags