Forward API リファレンス。
Description
Retrieves metadata for a single Skill version by version number, without content. Retrieve content with Download Skill Version Content.
パス
GET /api/v1/forward/skills/{id}/versions/{version}
リクエストヘッダー
| ヘッダー | 必須 | 説明 |
|---|---|---|
Authorization | はい | Bearer <PAT または SAT> |
パス参数
| パラメーター | 型 | 必須 | 説明 |
|---|---|---|---|
id | string | はい | Skill ID。 |
version | string | Yes | Version number. • Recommended: A 16-digit Unix microsecond timestamp such as 1759178010641129;• Compatibility: Legacy incremental counters such as "1" or "2" still resolve to the same version during migration.The literal latest is not supported and returns 400. Call Get a Skill, read latest_version, and use that value in the path. |
リクエスト例
レスポンス例
HTTP 200 OK
レスポンスフィールド
The response is a Skill version object. See Legacy version-number compatibility for compatibility rules.
エラー
| HTTP | Type | 発生条件 |
|---|---|---|
| 400 | invalid_request_error | The version format is invalid, such as latest or a nonnumeric string. |
| 401 | authentication_error | 認証トークンがないか、無効です。 |
| 403 | permission_error | The caller cannot access the Skill. |
| 404 | not_found_error | The Skill or version does not exist. |
| 500/502/503 | api_error | Forward または依存サービスでエラーが発生しました。 |