chatform
API referenceV1

Every published version of a form, newest first

Each version carries the number of completed responses recorded against it — a version nobody answered can be replaced freely; one with responses behind it is the schema those answers were recorded against.

GET
/v1/forms/{id}/versions

Authorization

AuthorizationBearer <token>

A server-side secret key. Never send one from a browser — a request carrying an Origin header is refused for this reason.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/forms/string/versions"
[  {    "version": 0,    "versionId": "string",    "note": "string",    "publishedAt": 0,    "authorLabel": "string",    "changeCount": 0,    "isActive": true,    "responses": 0  }]