POST
/
apis
/
setting-service
/
public
/
v1
/
forms
/
{form_id}
/
submit
Submit Form Data
curl --request POST \
  --url https://{base-address}/apis/setting-service/public/v1/forms/{form_id}/submit \
  --header 'Content-Type: multipart/form-data' \
  --form 'formData=<string>' \
  --form files=@example-file.txt
{
  "Status": "success",
  "Data": {
    "item": "<string>"
  }
}
Before calling this endpoint, make sure you’ve generated an API token and picked the correct domain. See Authentication & Base URLs.

Path Parameters

form_id
string
required

Unique identifier of the form to submit.

Query Parameters

locale
string
required

Specifies the language or region for the response data

Body

multipart/form-data

Response

200
application/json

Submission accepted. Returns submission ID or result message.

The response is of type object.