GET
/
apis
/
request
/
workflow
/
step
/
status
/
{stepId}
curl --request GET \
--url https://api.nfig.ai/apis/request/workflow/step/status/<stepId> \
--header 'api-key: <api-key>'
{
  "goal": "Go to amazon.com",
  "type": "ACT",
  "status": "INITIATED"
}

Authorizations

api-key
string
header
required

Path Parameters

stepId
string
required

Unique identifier for each step

Response

200 - application/json
Get a workflow step run status
goal
string
required

Goal to be executed

type
enum<string>
required

Whether the goal is Ask or Act type

Available options:
ACT,
ASK
status
enum<string>
required

Status of the step

Available options:
INITIATED,
COMPLETED,
FAILED,
STOPPED