> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取 Identity

> 根据 ID 获取 Forward Identity。

`GET /api/v1/forward/identities/{identity_id}`

返回当前账号下的 Identity 详情。

## 请求头

| Header        | 是否必填 | 说明             |
| ------------- | ---- | -------------- |
| Authorization | 是    | `Bearer <PAT>` |

## 路径参数

| 参数           | 类型     | 是否必填 | 说明                   |
| ------------ | ------ | ---- | -------------------- |
| identity\_id | string | 是    | Forward Identity ID。 |

## 示例请求

```bash theme={null}
curl -s -X GET 'https://api.qoder.com/api/v1/forward/identities/idn_019eabc123' \
  -H "Authorization: Bearer $QODER_PAT"
```

## 示例响应

**HTTP 200 OK**

```json theme={null}
{
  "id": "idn_019eabc123",
  "external_id": "user_456",
  "name": "Example User",
  "enabled": true,
  "metadata": {
    "channel": "web"
  },
  "created_at": "2026-06-18T10:00:00Z",
  "updated_at": "2026-06-18T10:00:00Z"
}
```

## 响应字段

| 字段  | 类型     | 说明           |
| --- | ------ | ------------ |
| 返回值 | object | Identity 对象。 |

## 错误

| HTTP | Type                   | Code                      | 触发条件                   |
| ---- | ---------------------- | ------------------------- | ---------------------- |
| 404  | `not_found_error`      | -                         | Identity 不存在或当前调用方不可见。 |
| 401  | `authentication_error` | `authentication_required` | PAT 无效或已过期。            |
| 403  | `permission_error`     | -                         | 当前调用方无权访问该资源。          |

## 注意事项

* 已停用的 Identity 仍可查询。
* 已删除的 Identity 不能继续用于创建 Session。

## 相关

<CardGroup cols={2}>
  <Card title="更新 Identity" icon="pencil" href="/cloud-agents/api/forward/identities/update" />

  <Card title="列出 Identity Configs" icon="gear" href="/cloud-agents/api/forward/identities/list-configs" />
</CardGroup>
