Skill Group Items
Skill group items link groups to skills.
Skill Group Items object
Attributes
object
Stringid
Stringstatus
Enumskill_group_id
Stringskill
Objectcreated_at
Date{"object": "skill.group.item","status": "active","skill": {"object": "skill","status": "active","client_metadata": {},"metadata": {}}}
List skill group items
Returns a paginated list of items for a skill group.
URL Parameters
skill_group_id
StringThe unique identifier for the skill_group
Query Parameters
limit
NumberOptionalafter
StringOptionalbefore
StringOptionalcursor
StringOptionalorder
EnumOptionalstatus
UnionOptionalid
UnionOptionalskill_id
UnionOptionalcreated_at
ObjectOptionalFilter skill group item creation time by date range
curl -X GET "https://api.metorial.com/skill-groups/ski_Rm4Mnheq2bfEPhBhP7SY/items" \-H "Authorization: Bearer metorial_sk_..."
Get skill group item
Retrieves a specific skill group item.
URL Parameters
skill_group_id
StringThe unique identifier for the skill_group
skill_group_item_id
StringThe unique identifier for the skill_group_item
curl -X GET "https://api.metorial.com/skill-groups/ski_Rm4Mnheq2bfEPhBhP7SY/items/ski_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."
Create skill group item
Adds a skill to a skill group.
URL Parameters
skill_group_id
StringThe unique identifier for the skill_group
Request Body
skill_id
Stringcurl -X POST "https://api.metorial.com/skill-groups/ski_Rm4Mnheq2bfEPhBhP7SY/items" \-H "Content-Type: application/json" \-H "Authorization: Bearer metorial_sk_..." \-d '{"skill_id": "example_skill_id"}'
Delete skill group item
Archives a skill group item.
URL Parameters
skill_group_id
StringThe unique identifier for the skill_group
skill_group_item_id
StringThe unique identifier for the skill_group_item
curl -X DELETE "https://api.metorial.com/skill-groups/ski_Rm4Mnheq2bfEPhBhP7SY/items/ski_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."