v1
latestOpenAPI 3.0.32026-07-267015229.9 KBSkills
Update PAL Skill
Merge changes into an existing skill attachment's configuration. Fields you pass replace the existing values, fields you omit are preserved, and fields set to null are removed. The merged configuration is validated against the skill's config schema.
Unlike Attach Skill to PAL, this endpoint cannot create a new attachment - the skill must already be attached.
patch/v2/pals/{pal_id}/skills/{skill_id}
Request body
Example request
{
"config": {
"slides_trigger": "on_demand"
}
}Response
Successfully updated the skill attachment
Example response
{
"skill_id": "presentation",
"config": {
"document_ids": [
"d1234567890",
"d2468101214"
],
"slides_trigger": "walk_the_deck",
"prompt": "Walk the participant through the Q4 roadmap deck."
},
"attached_at": "2026-06-10T14:30:45.123456+00:00",
"updated_at": "2026-06-10T14:30:45.123456+00:00"
}