Skill Participants

Inspect participants associated with an instance skill.

Skill Participants object

Attributes

object

String

String representing the object's type

id

String

skill_id

String

roles

Array

actor

Object

created_at

Date

updated_at

Date
{
"object": "skill.participant",
"roles": [
"creator",
"creator"
],
"actor": {
"type": "organization_actor",
"organization_actor": {
"object": "organization.actor",
"id": "omem_5fGhJkLmNpQrStUv",
"type": "member",
"organization_id": "org_7hNkPqRsTuVwXyZa",
"name": "Alex Chen",
"email": "[email protected]",
"image_url": "https://avatar-cdn.metorial.com/aimg_1234567890",
"teams": [
{
"id": "tm_3eFgHjKlMnPqRsTu",
"name": "Engineering",
"slug": "engineering",
"assignment_id": "tmas_8jKlMnPqRsTuVwXy"
},
{
"id": "tm_3eFgHjKlMnPqRsTu",
"name": "Engineering",
"slug": "engineering",
"assignment_id": "tmas_8jKlMnPqRsTuVwXy"
}
]
},
"consumer": {
"object": "consumer"
}
}
}

List skill participants

Returns a paginated list of participants for a specific skill.

URL Parameters

skill_id

String

The unique identifier for the skill

Query Parameters

limit

NumberOptional

after

StringOptional

before

StringOptional

cursor

StringOptional

order

EnumOptional
GEThttp://api.metorial.com/skills/:skill_id/participants
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/participants" \
-H "Authorization: Bearer metorial_sk_..."

Get skill participant by ID

Retrieves a specific participant within a skill.

URL Parameters

skill_id

String

The unique identifier for the skill

skill_participant_id

String

The unique identifier for the skill_participant

GEThttp://api.metorial.com/skills/:skill_id/participants/:skill_participant_id
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/participants/ski_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."