> ## 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.

# 创建联系人

> 创建新联系人。



## OpenAPI

````yaml openapi/zh/apollo.json POST /apollo/contacts
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:
    post:
      summary: 创建联系人
      description: 创建新联系人。需要主 API 密钥。
      operationId: post_apollo_contacts
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                first_name:
                  type: string
                  description: 名字
                last_name:
                  type: string
                  description: 姓氏
                organization_name:
                  type: string
                  description: 组织名称
                title:
                  type: string
                  description: 标题
                account_id:
                  type: string
                  description: 账户 ID
                email:
                  type: string
                  description: 电子邮件
                website_url:
                  type: string
                  description: 网站 URL
                label_names:
                  type: string
                  description: 要为联系人设置的标签
                contact_stage_id:
                  type: string
                  description: 联系人阶段 ID
                present_raw_address:
                  type: string
                  description: 原始地址
                direct_phone:
                  type: string
                  description: 直拨电话
                corporate_phone:
                  type: string
                  description: 公司电话
                mobile_phone:
                  type: string
                  description: 手机号码
                home_phone:
                  type: string
                  description: 家庭电话
                other_phone:
                  type: string
                  description: 其他电话
                typed_custom_fields:
                  type: object
                  description: 类型化自定义字段对象
                run_dedupe:
                  type: boolean
                  description: 启用去重。默认为 false。
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  contact:
                    type: object
                    description: 已创建的联系人
                    additionalProperties: true
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````