Settings

Make changes to ItemPath settings using the API.

Attributes

Endpoints

Update License

put http://api/settings

Arguments

  • license string

    The encrypted license for your ItemPath installation. This needs to be renewed each year.

Request with curl
curl "http://[Your IP] http://api/settings" \ -X put \ -H "Content-Type: application/json" \ -H "Authorization: Bearer [Your JWT Access Token]"
-d '{ 
  "license": "qgbL/cFSq0vhcuXhTF9vIvvIM9dv27PQ4T5RgixoP+VePGbxExQfhDItlnf8am"
}'
Example Response
{
    "settings": [
        {
            "value": "qgbL/cFSq0vhcuXhTF9vIvvIM9dv27PQ4T5RgixoP+VePGbxExQfhDItlnf8am",
            "integrationId": null,
            "number": 100,
            "name": "license",
            "type": null,
            "connectionId": null,
            "id": 120,
            "appId": null
        }
    ]
}