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

# Bulk Contact Actions

> Run one action over up to 100 contacts at once. IDs that belong to another workspace are silently skipped. `unsubscribe` only affects contacts that are still subscribed. `assign_tags` and `unassign_tags` require `tag_ids`.

Run one action — `delete`, `unsubscribe`, `assign_tags`, or `unassign_tags` — over up to 100 contacts at once. IDs that belong to another workspace are silently skipped.


## OpenAPI

````yaml POST /contacts/bulk-actions
openapi: 3.1.0
info:
  title: Feedspace API
  description: Feedspace API v3 - Feedback and testimonial management platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.feedspace.io/v3
security: []
paths:
  /contacts/bulk-actions:
    post:
      tags:
        - Contacts
      description: >-
        Run one action over up to 100 contacts at once. IDs that belong to
        another workspace are silently skipped. `unsubscribe` only affects
        contacts that are still subscribed. `assign_tags` and `unassign_tags`
        require `tag_ids`.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                action:
                  type: string
                  enum:
                    - delete
                    - unsubscribe
                    - assign_tags
                    - unassign_tags
                  description: The operation to perform.
                contact_ids:
                  type: array
                  items:
                    type: integer
                  minItems: 1
                  maxItems: 100
                  description: Contact IDs to act on (1-100).
                tag_ids:
                  type: array
                  items:
                    type: integer
                  description: >-
                    Required when `action` is `assign_tags` or `unassign_tags`.
                    Tag IDs must exist in this workspace.
              required:
                - action
                - contact_ids
      responses:
        '200':
          description: Bulk action completed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  action:
                    type: string
                  requested_count:
                    type: integer
                  affected_count:
                    type: integer
                  skipped_count:
                    type: integer
              examples:
                success:
                  value:
                    action: assign_tags
                    requested_count: 3
                    affected_count: 3
                    skipped_count: 0
      security:
        - basicAuth: []
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        HTTP Basic Authentication using API Key and Secret Key. The credentials
        should be Base64 encoded in the format 'api_key:secret_key'. You can
        obtain your API Key and Secret Key from Feedspace → Automation → API
        (https://app.feedspace.io/automation/api).

````