Installer.com Docs
API ReferenceWorkflows
POST
/api/routers/{routerId}/workflow-steps/{workflowStepId}/inputs

Path Parameters

routerId*string
Formatuuid
workflowStepId*string
Formatuuid

Request Body

application/json

Add workflow step inputs payload

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "http://localhost:8000/api/routers/497f6eca-6276-4993-bfeb-53cbbbba6f08/workflow-steps/497f6eca-6276-4993-bfeb-53cbbbba6f08/inputs" \  -H "Content-Type: application/json" \  -d '[    {      "customField": {}    }  ]'
[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "customId": "string",
    "name": "string",
    "type": "TEXT",
    "isSensitive": true,
    "fileUrl": "string",
    "regex": "string",
    "validationMessage": "string",
    "value": "string",
    "values": [
      {
        "value": "string",
        "fileUrl": "string",
        "fileName": "string"
      }
    ],
    "orderId": "b3e1eced-f2bd-4d8c-9765-fbc9d1d222d5"
  }
]