For the complete documentation index, see llms.txt. This page is also available as Markdown.

Forms

Retrieve form definitions and their versions

List all forms

get

Returns all available forms with pagination.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
app_shortstringRequired

Short name of the workspace instance (e.g. daxium-test)

Query parameters
per_pageintegerOptional

Number of forms per page (default 10)

Default: 10
pageintegerOptional

Page number (0-based)

Default: 0
updated_sinceinteger · int64Optional

Return only forms updated since this UNIX timestamp

Responses
200

Paginated list of forms

application/json
total_countintegerOptional
total_pagesintegerOptional
next_pageintegerOptional
server_timeinteger · int64Optional
get/{app_short}/structures
200

Paginated list of forms

Get a form

get

Returns the form at the specified version, or the latest version if omitted.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
app_shortstringRequired

Short name of the workspace instance (e.g. daxium-test)

idintegerRequired

Form identifier

Query parameters
versionintegerOptional

Form version number

Responses
200

Form object

application/json
server_timeinteger · int64Optional
get/{app_short}/structures/{id}
200

Form object

Get a file attached to a form

get

Returns the file attached to a form (currently Logo field images only).

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
app_shortstringRequired

Short name of the workspace instance (e.g. daxium-test)

idintegerRequired
file_idstring · uuidRequired
Responses
200

Image file

image/jpeg
string · binaryOptional
get/{app_short}/structures/{id}/file/{file_id}
200

Image file

Last updated

Was this helpful?