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

# Bulk-update routing status

> Update routing status (calls / chats) for multiple profiles in a single call. The body lists
profile ids and the routing-status object to apply to each.




## OpenAPI

````yaml https://dev.enneo.dev/api/mind/docs/open-api patch /profiles/routingStatus
openapi: 3.0.0
info:
  version: '1'
  title: enneo.MIND API
  description: This describes the API of enneo Mind, the main ticketing backend
  contact:
    name: enneo GmbH
    email: richard@enneo.ai
  license:
    name: Proprietary software
    url: https://enneo.ai
servers:
  - url: https://demo.enneo.ai/api/mind
    description: Production server, demo client
  - url: https://main.enneo.dev/api/mind
    description: Development main branch
  - url: http://localhost:8005/api/mind
    description: Local development server
security:
  - bearerAuth:
      - api
  - cookieAuth:
      - api
paths:
  /profiles/routingStatus:
    patch:
      tags:
        - Profile
      summary: Bulk-update routing status
      description: >
        Update routing status (calls / chats) for multiple profiles in a single
        call. The body lists

        profile ids and the routing-status object to apply to each.
      operationId: bulkUpdateRoutingStatus
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                profileIds:
                  type: array
                  items:
                    type: integer
                  description: Profiles to update.
                routingStatus:
                  type: object
                  description: >-
                    Routing-status payload (same shape as the per-profile
                    endpoint).
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
        '403':
          description: Permission denied
components:
  schemas:
    Success:
      type: object
      description: Data format of Enneo success messages
      properties:
        success:
          type: boolean
          example: true
          description: Operation was successful
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT-based authentication
      x-scopes:
        api: Full access to the API
    cookieAuth:
      type: apiKey
      in: cookie
      name: connect.sid
      description: Cookie-based authentication
      x-scopes:
        api: Full access to the API

````