Forward API リファレンス。
Description
Lists all versions of the specified Skill in descending created_at order, with cursor pagination. Versions are immutable after creation.
パス
GET /api/v1/forward/skills/{id}/versions
リクエストヘッダー
| ヘッダー | 必須 | 説明 |
|---|---|---|
Authorization | はい | Bearer <PAT または SAT> |
パス参数
| パラメーター | 型 | 必須 | 説明 |
|---|---|---|---|
id | string | はい | Skill ID。 |
クエリパラメーター
| パラメーター | 型 | 必須 | 説明 |
|---|---|---|---|
limit | integer | No | Page size, up to 100; defaults to 20. |
page | string | No | Forward pagination cursor from next_page in the previous response. Omit it to start from the first page. |
リクエスト例
レスポンス例
HTTP 200 OK
レスポンスフィールド
Each item in the response data array is a Skill version object. See Skill version list pagination fields for has_more and next_page.
エラー
| HTTP | Type | 発生条件 |
|---|---|---|
| 400 | invalid_request_error | The limit or page parameter is invalid. |
| 401 | authentication_error | 認証トークンがないか、無効です。 |
| 403 | permission_error | The caller cannot access the Skill. |
| 404 | not_found_error | The Skill does not exist or is not visible. |
| 500/502/503 | api_error | Forward または依存サービスでエラーが発生しました。 |