idp-server コントロールプレーン 身元確認結果管理 API (1.0.0)
Download OpenAPI specification:Download
身元確認結果(Identity Verification Result)の管理API仕様書
組織内身元確認結果一覧取得
指定した組織・テナント内の身元確認結果一覧を取得します。各種フィルタリングおよびページネーションに対応しています。
path Parameters
| organization-id required | string <uuid> 組織の識別子 |
| tenant-id required | string テナントの識別子 |
query Parameters
| limit | integer [ 1 .. 1000 ] Default: 20 返すアイテムの最大数 |
| offset | integer >= 0 Default: 0 アイテムを返す開始インデックス |
| id | string <uuid> 結果IDでフィルタリング |
| type | string 検証タイプでフィルタリング |
| application_id | string <uuid> 申請IDでフィルタリング |
| source | string Enum: "application" "direct" "manual" "import" ソースタイプでフィルタリング |
| verified_at_from | string <date-time> 検証日時の開始(ISO 8601形式) |
| verified_at_to | string <date-time> 検証日時の終了(ISO 8601形式) |
| verified_until_from | string <date-time> 有効期限の開始(ISO 8601形式) |
| verified_until_to | string <date-time> 有効期限の終了(ISO 8601形式) |
Responses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "list": [
- {
- "id": "d02d9859-aad5-4672-bcc9-8fa42d5f2793",
- "type": "investment-account-opening",
- "tenant_id": "67e7eae6-62b0-4500-9eff-87459f63fc66",
- "user_id": "3ec055a8-8000-44a2-8677-e70ebff414e2",
- "application_id": "bd3b53e7-bcf2-490e-b1b7-416b086c9cee",
- "verified_claims": { },
- "verified_at": "2026-03-18T10:30:00",
- "verified_until": "2027-03-18T10:30:00",
- "source": "application",
- "source_details": { },
- "attributes": { },
- "applied_user_claims": {
- "user_claims": { },
- "custom_properties": { },
- "user_status": "string"
}
}
], - "total_count": 10,
- "limit": 20,
- "offset": 0
}組織内身元確認結果詳細取得
指定した組織・テナント内の特定の身元確認結果の詳細を取得します
path Parameters
| organization-id required | string <uuid> 組織の識別子 |
| tenant-id required | string テナントの識別子 |
| result-id required | string <uuid> 身元確認結果の識別子 |
Responses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "id": "d02d9859-aad5-4672-bcc9-8fa42d5f2793",
- "type": "investment-account-opening",
- "tenant_id": "67e7eae6-62b0-4500-9eff-87459f63fc66",
- "user_id": "3ec055a8-8000-44a2-8677-e70ebff414e2",
- "application_id": "bd3b53e7-bcf2-490e-b1b7-416b086c9cee",
- "verified_claims": { },
- "verified_at": "2026-03-18T10:30:00",
- "verified_until": "2027-03-18T10:30:00",
- "source": "application",
- "source_details": { },
- "attributes": { },
- "applied_user_claims": {
- "user_claims": { },
- "custom_properties": { },
- "user_status": "string"
}
}