Submit form
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
POST /form
Operation
Operation ID: submitForm
Submit a form
Authentication
Security requirements:
Scheme | Scopes |
|---|---|
BearerAuth | - |
Request Body
Required: yes.
Content type: application/json
{
"properties": {
"data": {
"description": "Form submission data",
"type": "object"
},
"g_recaptcha_response": {
"description": "reCAPTCHA verification token (required if not authenticated)",
"type": "string"
},
"id": {
"description": "Form identifier",
"type": "string"
}
},
"required": [
"id",
"data"
],
"type": "object"
}
Responses
Status | Description | Content Types |
|---|---|---|
201 | Form submitted successfully | application/json |
Schema for response 201 (application/json):
{}
17 March 2026