POST /api/Skill

POST /api/Skill

Body

  • name string | null
  • description string | null
  • level integer(int32)

    Values are 0, 1, 2, or 3.

  • Additional properties are NOT allowed

Responses

  • 200

    Success

curl \
 -X POST http://api.example.com/api/Skill \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json-patch+json"
curl \
 -X POST http://api.example.com/api/Skill \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"name":"string","description":"string","level":0}'
curl \
 -X POST http://api.example.com/api/Skill \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/json"
curl \
 -X POST http://api.example.com/api/Skill \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/*+json"
Request examples
{
  "name": "string",
  "description": "string",
  "level": 0
}
Request examples
{
  "name": "string",
  "description": "string",
  "level": 0
}