Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The POST /skills endpoint creates a new skill using the provided values.

In this page

Request parameters

Request body

The endpoint requires a skill object in JSON format as in the request body.

Example body

{
  "skillName": "skill_test"
}

where:

  • skillName. The name of the skill.

Responses

Responses contain the created skill.

Successful response

Successful requests return a 200 Success code and the created skill.

Example response

{
  "skillId": "7e7ee25f-76fa-4ca8-94df-dae9c65d4df0",
  "skillName": "Skill1",
  "skillDisplayId": 12345
}

where:

  • skillId. The unique ID of the skill.
  • skillName. The name of the skill.
  • skillDisplayID. The skill's unique ID.
  • No labels