Create a skill
createSkillAdd a new skill to a category so it becomes available for technician matching. Provide the category ID and a unique skill name, plus an optional description.
Instructions
Create a skill
Creates a skill under the given category. New skills are active by default. Skill names must be unique within their category.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Skill category ID (UUID) | |
| name | Yes | Skill name (required). The matching engine hard-filters technicians on skills when a booking carries skill_ids. | |
| description | No | What the skill covers. Optional. | |
| idempotency_key | No | Unique key making retries safe: a repeat send with the same key replays the original response (header Idempotent-Replayed: true) instead of re-running the operation. Reusing a key with a different body returns 422 IDEMPOTENCY_KEY_REUSE. (sent as the Idempotency-Key header) |