Create Configurator
This request creates a configurator.
Endpoints
- POST /configurators
Example request
POST https://api.paramate.trinckle.com/configurators
-H Authorization: Bearer eyJhbGciOiJIUzI1Ni ... 3H8gC1k2DIKNEeJpb72yvmdY
-H Content-Type: application/json
{
"name": "Test",
"description": "This is a test configurator",
"mainFile": "main_new.sps",
"cadType": "trcad",
"cadVersion": "1.1",
"rendererType": "mview",
"rendererVersion": "1.0",
"extraSettings": {}
}
Example response
HTTP/1.1 200 OK
{
"UUID": "2ab584fe-7e76-470f-8571-cb07cd8a58d2"
}
Body
- JSON
-
A JSON object with the settings
see format in the example below
Header
- Authorization
-
Bearer {token} (User authorization needed)
Response
A JSON object with the ID of the configurator
see format in the example below