Skip to main content
PATCH
/
skills
/
{id}
Update a skill
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/skills/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "7c3e1a84-f592-4d06-b8e3-0a1f2c9d5e47",
  "name": "PowerBI",
  "isActive": true,
  "createdAt": "2025-11-17T20:32:38.404Z"
}
A competency that can be assigned to members and placeholders and used to filter reports.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The skill uuid.

Body

application/json
name
string

The name of the skill.

isActive
boolean

Whether the skill is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the skill.

isActive
boolean

Whether the skill is active.

createdAt
string<date-time>

The timestamp when the object was created.