Clipform
Nodes

Add a node

Adds a node to a form.

POST
/forms/{formId}/nodes

Authorization

bearerAuth
AuthorizationBearer <token>

API key (cf_*) passed as Bearer token

In: header

Path Parameters

formId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/forms/497f6eca-6276-4993-bfeb-53cbbbba6f08/nodes" \  -H "Content-Type: application/json" \  -d '{    "node": {      "type": "choice",      "prompt": "string"    }  }'
{  "node_id": "6e0bdcac-9717-4a6f-972e-97489dffeb0c"}