REST API V2
Articles
Cancel Workflow with Rest API v2
This endpoint allows you to cancel the active workflow for the specified entry. It can be accessed as a POST to /wp-json/gf/v2/workflows/[entry_id]/cancel
Get Current Step with Rest API v2
This endpoint allows you to retrieve the current step of the workflow for the specified entry. It can be accessed as a GET to /gf/v2/entries/[entry_id]/workflow/steps/current
Get Specific Step with Rest API v2
This endpoint allows you to retrieve a specific step of the workflow for the specified entry. It can be accessed as a GET to /gf/v2/entries/[entry_id]/workflow/steps/[step_id]
Get Steps By Entry with Rest API v2
This endpoint allows you to retrieve all steps of the workflow for the specified entry. It can be accessed as a GET to /wp-json/gf/v2/entries/[entry_id]/workflows/steps
Get Steps By Form with Rest API v2
This endpoint allows you to retrieve all steps of the workflow for the specified form. It can be accessed as a GET to /wp-json/gf/v2/forms/[form_id]/workflows/steps
Get Workflow Status with Rest API V2
This endpoint allows you to get the workflow status, and current step details if available, for an existing entry. It can be accessed as a GET to /wp-json/gf/v2/entries/[entry_id]/workflows/status
Incoming Webhook Create an Entry via Rest API V2
This endpoint allows external services to submit data directly into a form to create a new entry based on settings defined in the Incoming Webhook Create an Entry feed. It can be accessed as a POST to /wp-json/gf/v2/workflow/webhooks/[feed_id]/[key]
Process Incoming Webhook with Rest API v2
This endpoint allows external services to submit data to complete an incoming webhook step with field values mapped based on settings defined in the Incoming Webhook step. It can be accessed as a POST to /wp-json/gf/v2/entries/[entry_id]/workflow-hooks
Process the current step with Rest API V2
This endpoint allows you to process the current step for the specified entry either in whole or as an assignee. It can be accessed as a POST to /gf/v2/entries/[entry_id]/workflow/steps/[step_id]/process.
Restart Step with Rest API v2
This endpoint allows you to restart the current step of the workflow for the specified entry.