List skill versions for a skill.
GET/skills/{skill_id}/versions
List skill versions for a skill.
List skill versions for a skill.
curl https://api.openai.com/v1/skills/$SKILL_ID/versions \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"data": [
{
"id": "id",
"created_at": 0,
"description": "description",
"name": "name",
"object": "skill.version",
"skill_id": "skill_id",
"version": "version"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}Returns Examples
{
"data": [
{
"id": "id",
"created_at": 0,
"description": "description",
"name": "name",
"object": "skill.version",
"skill_id": "skill_id",
"version": "version"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}