> ## 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/bulk_update
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/bulk_update:
    post:
      summary: 批量更新联系人
      description: 批量更新联系人。需要主 API 密钥。
      operationId: post_apollo_contacts_bulk_update
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  contacts:
                    type: string
                    description: 已更新的联系人
                  contacts[].id:
                    type: string
                    description: 联系人 ID
                  contacts[].first_name:
                    type: string
                    description: 名字
                  contacts[].last_name:
                    type: string
                    description: 姓氏
                  contacts[].email:
                    type: string
                    description: 电子邮件
                  contacts[].title:
                    type: string
                    description: 标题
                  contacts[].organization_name:
                    type: string
                    description: 组织名称
                  contacts[].owner_id:
                    type: string
                    description: 所有者 ID
                  contacts[].account_id:
                    type: string
                    description: 账户 ID
                  contacts[].present_raw_address:
                    type: string
                    description: 原始地址
                  contacts[].linkedin_url:
                    type: string
                    description: LinkedIn URL
                  contacts[].updated_at:
                    type: string
                    description: 更新时间戳
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````