POST
/
onboarding
/
api
/
runtime
/
process
/
{processUuid}
/
token
/
{tokenUuid}
/
ui-action
/
{uiActionFlowxUuid}
/
context
/
main
/
execute
Execute action
curl --request POST \
  --url https://admin.devmain.flowxai.dev/onboarding/api/runtime/process/{processUuid}/token/{tokenUuid}/ui-action/{uiActionFlowxUuid}/context/main/execute \
  --header 'Authorization: <authorization>'
{
  "tokenUuid": "<string>",
  "currentNodeId": 123,
  "templatesSequence": null,
  "backAction": true,
  "resetToken": true
}

Base URL

  • Always prepend the endpoint with the correct Base URL.
  • For different environments (like staging or production), switch the base URL accordingly.

Request Headers

Authorization
string
required
Bearer token required for authentication. Format: Bearer <token>.

Path Parameters

processUuid
string
required
The unique identifier of the process instance.
tokenUuid
string
required
The unique identifier of the runtime token.
uiActionFlowxUuid
string
required
The unique identifier of the UI action to execute.

Response fields

tokenUuid
string
The unique identifier of the token associated with the process.
currentNodeId
integer
The ID of the current node in the process execution flow.
templatesSequence
null
Reserved for future use. Currently always null.
backAction
boolean
Indicates whether a back action is triggered. Default is false.
resetToken
boolean
Indicates whether the token should be reset. Default is false.