Skip to main content
POST
/
api
/
public
/
v1
/
skill
Create a skill
curl --request POST \
  --url https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/skill \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "accountId": "<string>",
  "name": "<string>",
  "_id": "<string>",
  "createDate": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Display name for the skill, e.g. 'React'.

Response

Successful Response

accountId
string
required

Account this skill belongs to.

name
string
required

Display name of the skill.

_id
string

Unique identifier of the skill.

createDate
string<date-time>

UTC timestamp when the skill was created.