Employees

Create skill

POST
/api/public/v3/employees/{employee_id}/skills

Path Parameters

employee_id*integer

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/public/v3/employees/0/skills" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'skill_id=string&level=string'
{  "data": {    "id": 0,    "level": "string",    "skill": {      "id": 0,      "name": "string"    }  }}