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

# Bulk update

> Batch endpoint: update fields on one or more companies (name, logoUrl, isVip, primaryDomain, connections). Supports partial success - each company is updated independently. Use the single-resource PATCH /companies/{companyId} for one company.



## OpenAPI

````yaml /api-reference/openapi.json patch /companies/bulk
openapi: 3.1.1
info:
  description: >-
    The public Modem API. Authenticate with an organization API key:
    `Authorization: Bearer modem_…`.
  title: Modem API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.modem.dev/v1
security:
  - bearerAuth: []
paths:
  /companies/bulk:
    patch:
      tags:
        - Companies
      summary: Bulk update
      description: >-
        Batch endpoint: update fields on one or more companies (name, logoUrl,
        isVip, primaryDomain, connections). Supports partial success - each
        company is updated independently. Use the single-resource PATCH
        /companies/{companyId} for one company.
      operationId: companies.bulkUpdate
      requestBody:
        content:
          application/json:
            schema:
              properties:
                companies:
                  items:
                    properties:
                      companyId:
                        pattern: ^\d+$
                        type: string
                      connections:
                        properties:
                          email:
                            anyOf:
                              - type: string
                              - type: 'null'
                          github:
                            anyOf:
                              - type: string
                              - type: 'null'
                          linkedin:
                            anyOf:
                              - type: string
                              - type: 'null'
                          phone:
                            anyOf:
                              - type: string
                              - type: 'null'
                          twitter:
                            anyOf:
                              - type: string
                              - type: 'null'
                        type: object
                      isVip:
                        type: boolean
                      logoUrl:
                        anyOf:
                          - format: uri
                            type: string
                          - type: 'null'
                      name:
                        minLength: 1
                        type: string
                      primaryDomain:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - companyId
                    type: object
                  maxItems: 50
                  minItems: 1
                  type: array
              required:
                - companies
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  results:
                    items:
                      properties:
                        companyId:
                          anyOf:
                            - type: string
                            - type: string
                        data:
                          properties:
                            connections:
                              properties:
                                email:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                github:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                linkedin:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                phone:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                twitter:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                              required:
                                - email
                                - github
                                - linkedin
                                - phone
                                - twitter
                              type: object
                            id:
                              pattern: ^\d+$
                              type: string
                            isVip:
                              type: boolean
                            logoUrl:
                              anyOf:
                                - format: uri
                                  type: string
                                - type: 'null'
                              description: Company logo image URL.
                              title: Logo URL
                            name:
                              description: Company name.
                              title: Name
                              type: string
                            primaryDomain:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - connections
                            - id
                            - isVip
                            - logoUrl
                            - name
                            - primaryDomain
                          type: object
                        error:
                          type: string
                        success:
                          type: boolean
                      required:
                        - companyId
                        - success
                      type: object
                    type: array
                required:
                  - results
                type: object
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Invalid request (validation failed).
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid API key.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: The API key does not have access to this resource.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: The requested resource was not found.
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Rate limit exceeded.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Internal server error.
components:
  schemas:
    Error:
      properties:
        code:
          description: Machine-readable error code, e.g. `NOT_FOUND`.
          examples:
            - NOT_FOUND
          type: string
        data:
          description: Optional structured error details.
        defined:
          description: True if the error was declared in the procedure contract.
          type: boolean
        message:
          description: Human-readable error message.
          type: string
        status:
          description: HTTP status code.
          examples:
            - 404
          type: integer
      required:
        - code
        - defined
        - message
        - status
      type: object
  securitySchemes:
    bearerAuth:
      description: Organization API key (`modem_…`).
      scheme: bearer
      type: http

````