Form Fields
Get a list of configurator form fields.
GET /configurator-form-fields
Fetch All Configurator Form Fields
GET /open-api/v1/configurator-form-fields{
"fields": [
{
"id": "123",
"name": "Shipping",
"type": "Dropdown",
"options": ["UPS", "FedEx", "No shipping"],
"default": "Red",
"required": true
},
{
"id": "124",
"name": "Size",
"type": "text",
"default": "Medium",
"required": false
}
]
}Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Query parameters
order_bystringOptionalExample:
Column to order results by (e.g., 'created_at')
created_atorderstring · enumOptionalExample:
Sorting order (asc or desc)
descPossible values: per_pageintegerOptionalExample:
Number of records per page (-1 for all records)
25pageintegerOptionalExample:
Number of page
2Responses
200
Successful response
application/json
401
Unauthorized
500
Internal Server Error
get
/api/open-api/v1/configurator-form-fieldsGET /configurator/form-fields
Simplio3D API: Get Configurator Form Field by ID
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Path parameters
idinteger · int64RequiredExample:
ID of the configurator form field
12Responses
200
Successful response
application/json
401
Unauthorized
404
Configurator form field not found
500
Server error
get
/api/open-api/v1/configurator-form-fields/{id}Last updated