SkillConfig

You need the Manage skills permission to manage skill configs.

SkillConfigs
- SkillConfigs Manage
GET global/skillConfig
POST global/skillConfig:disable
POST global/skillConfig:enable
Model
SkillConfig JSON Format

SkillConfig is represented as simple flat JSON objects with the following keys:

Name Type Description
isEnabled bool
Endpoint
Get a single SkillConfig

GET global/skillConfig

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/global/skillConfig \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"isEnabled":true}
Disable the SkillConfig

POST global/skillConfig:disable

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/global/skillConfig:disable \
-X 'POST' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"isEnabled":false}
Enable the SkillConfig

POST global/skillConfig:enable

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/global/skillConfig:enable \
-X 'POST' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"isEnabled":true}