Update Configurator
This request updates a configurator.
Endpoints
- PUT /configurators/{configuratorID}
Url
- configuratorID
-
The ID of the configurator
Header
- Authorization
-
Bearer {token} (User authorization needed)
Body
- JSON
-
A JSON object with the settings
see format in the example below
Response
A JSON object with the ID of the configurator
see format in the example below
Example request
PUT https://api.paramate.trinckle.com/configurators/2ab584fe-7e76-470f-8571-cb07cd8a58d2
-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": {}
}
Output
HTTP/1.1 200 OK
{
"UUID": "2ab584fe-7e76-470f-8571-cb07cd8a58d2"
}