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

# 查看联系人

> 按 ID 查看联系人。



## OpenAPI

````yaml openapi/zh/apollo.json GET /apollo/contacts/{contact_id}
openapi: 3.0.3
info:
  title: Apollo API
  version: 1.0.0
  description: 通过 AIsa 统一网关公开的 Apollo API 端点。
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /apollo/contacts/{contact_id}:
    get:
      summary: 查看联系人
      description: 按 ID 查看联系人。需要主 API 密钥。
      operationId: get_apollo_contacts_contact_id
      parameters:
        - name: contact_id
          in: path
          required: true
          schema:
            type: string
          description: 联系人 ID
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  contact:
                    type: object
                    description: 联系人对象
                  contact.id:
                    type: string
                    description: 联系人 ID
                  contact.first_name:
                    type: string
                    description: 名字
                  contact.last_name:
                    type: string
                    description: 姓氏
                  contact.organization_name:
                    type: string
                    description: 组织名称
                  contact.title:
                    type: string
                    description: 标题
                  contact.email:
                    type: string
                    description: 电子邮件
                  contact.phone_numbers:
                    type: string
                    description: 电话号码
                  contact.phone_numbers[].raw_number:
                    type: string
                    description: 原始数值
                  contact.phone_numbers[].sanitized_number:
                    type: string
                    description: 清理后的号码
                  contact.owner_id:
                    type: string
                    description: 所有者 ID
                  contact.account_id:
                    type: string
                    description: 账户 ID
                  contact.present_raw_address:
                    type: string
                    description: 原始地址
                  contact.linkedin_url:
                    type: string
                    description: LinkedIn URL
                  contact.updated_at:
                    type: string
                    description: 更新时间戳
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````