v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Form

Create Form

Add a new form

post/workspaces/{workspace_id}/forms

Path parameters

workspace_idinteger required

Request body

Example request

{
  "form": {
    "form": {
      "name": "Example Form"
    }
  }
}

Response

Created

idinteger

Form ID

public_idstring nullable

Form public ID

workspace_idinteger

Workspace ID

namestring

Name

created_atstring date-time nullable

Added

updated_atstring date-time nullable

Updated

Example response

{
  "id": 9,
  "public_id": "cozYwE",
  "workspace_id": 42000,
  "name": "Example Form",
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-01T00:00:00.000Z"
}