Register Configurator Application

This request creates a new application registration for a configurator.

Endpoints

  • POST /configurators/{configuratorID}/applications

Url

configuratorID

The ID of the configurator

Header

Authorization

Bearer {token} (User authorization needed)

Body

JSON

A JSON object with the application settings

see format in the example below

Response

A JSON object with the ID of the application

see format in the example below

POST https://api.paramate.trinckle.com/configurators/2ab584fe-7e76-470f-8571-cb07cd8a58d2/applications

  • H Authorization: Bearer eyJhbGciOiJIUzI1Ni ... 3H8gC1k2DIKNEeJpb72yvmdY
  • H Content-Type: application/json { "name": "Test", "licenseUUID": "ab75027b-cdf6-4867-a0ad-e9495be8d8da", "domain": "trinckle.com", "secureInit": false, "secureModel": false }

Output


 HTTP/1.1 200 OK
 {
    "UUID": "d562627c-4224-4cc4-9e62-2419933e6960"
 }
 

See also