メインコンテンツへスキップ
GET /api/v1/forward/identities/{identity_id}/templates Forward Identity 配下のアクティブまたはアーカイブされた Identity Config レコードを返します。

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

Path parameters

ParameterTypeRequiredDescription
identity_idstringYesForward Identity ID。

Query parameters

ParameterTypeRequiredDefaultDescription
template_idstringNo-Forward Template ID でフィルタリングします。
statusstringNoactiveactive または archived でフィルタリングします。
limitintegerNo201 ページあたりの項目数。最大 100。
after_idstringNo-前回のレスポンスの last_id を指すカーソル。before_id と併用できません。
before_idstringNo-前回のレスポンスの first_id を指すカーソル。after_id と併用できません。

Example request

curl -s -X GET 'https://api.qoder.com/api/v1/forward/identities/idn_019eabc123/templates?template_id=tmpl_support&limit=20' \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK
{
  "data": [
    {
      "type": "config",
      "id": "cfg_support",
      "identity_id": "idn_019eabc123",
      "template_id": "tmpl_support",
      "name": "CRM profile",
      "status": "active",
      "effective_hash": "sha256:...",
      "created_at": "2026-06-18T10:00:00Z",
      "updated_at": "2026-06-18T10:00:00Z"
    }
  ],
  "first_id": "cfg_support",
  "last_id": "cfg_support",
  "has_more": false
}

Response fields

FieldTypeDescription
dataarray現在のページにある Config サマリーオブジェクト。
first_idstring|nullこのページの最初の config の ID。
last_idstring|nullこのページの最後の config の ID。
has_morebooleanさらにレコードが残っているかどうか。

Errors

HTTPTypeTrigger
400invalid_request_errorページネーションパラメータが無効です。
401authentication_errorPAT が無効または期限切れです。
404not_found_errorIdentity が存在しないか、呼び出し元に表示されません。

Notes

  • カーソル値は Template ID ではなく Identity Config ID から得られます。
  • 1 つの Identity は、指定された Template に対して最大 1 つのアクティブな config を持つことができます。

アイデンティティ構成を作成または更新する

有効な構成を取得する