Skip to main content
Skills

Skill の取得

Forward API リファレンス。

Description

Retrieves a single Skill by ID, optionally including its content.

パス

GET /api/v1/forward/skills/{id}

リクエストヘッダー

ヘッダー必須説明
AuthorizationはいBearer <PAT または SAT>

パス参数

パラメーター必須説明
idstringはいSkill ID。

クエリパラメーター

パラメーター必須説明
include_contentbooleanNo⚠️ Deprecated: When true, the response includes content and content_encoding (base64 zip) and returns Deprecation: true in the response headers. Use Download Skill Version Content instead.

リクエスト例

curl -X GET "https://api.qoder.com/api/v1/forward/skills/skill_xxx" \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN"

レスポンス例

HTTP 200 OK
{
  "id": "skill_xxx",
  "type": "skill",
  "display_title": "customer-reply",
  "description": "Customer reply skill",
  "source": "custom",
  "latest_version": "1759178010641129",
  "metadata": {"source": "console"},
  "created_at": "2026-07-23T10:00:00Z",
  "updated_at": "2026-07-23T10:00:00Z",
  "identity_id": null,
  "icon_url": null,
  "binding_info": {"agent_template_count": 0}
}

レスポンスフィールド

The response is a Skill object. With include_content=true, it also includes content and content_encoding; both fields are deprecated. Use Download Skill Version Content instead.

エラー

HTTPType発生条件
400invalid_request_errorリクエストボディ、パスパラメーター、またはクエリパラメーターが不正です。
401authentication_error認証トークンがないか、無効です。
403permission_error呼び出し元にはこのリソースへのアクセス権限がありません。
404not_found_errorリソースが存在しないか、参照できません。
500/502/503api_errorForward または依存サービスでエラーが発生しました。