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

# Trigger Update All Customers Data

> Manually trigger updating all customers data.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json post /api/v1/tasks/trigger-update-all-customers-data
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/tasks/trigger-update-all-customers-data:
    post:
      tags:
        - Tasks
      summary: Trigger Update All Customers Data
      description: Manually trigger updating all customers data.
      operationId: >-
        trigger_update_all_customers_data_api_v1_tasks_trigger_update_all_customers_data_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TriggerDailyTasksResultSchema'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    TriggerDailyTasksResultSchema:
      properties:
        success:
          type: boolean
          title: Success
        message:
          type: string
          title: Message
        started_at:
          type: string
          format: date-time
          title: Started At
        task_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Task Id
      type: object
      required:
        - success
        - message
        - started_at
      title: TriggerDailyTasksResultSchema
      description: The schema for triggering daily tasks result.
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````