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

# Queue the daily run for one workspace



## OpenAPI

````yaml /api-reference/openapi.json post /admin/support/workspaces/{workspaceId}/run-daily
openapi: 3.0.0
info:
  title: asobeast API
  description: >-
    Self hosted ASO toolkit API.


    A metered instance carries RateLimit-Limit, RateLimit-Remaining and
    RateLimit-Reset on every response, for the tightest limit the request
    touched. A self hosted instance has no request rate limits and sends no such
    header. Limits are per workspace, so minting more tokens does not buy more
    capacity, and they are sized per plan across three classes: read for stored
    data, write for configuration changes and store for the endpoints that reach
    the App Store or Google Play.


    A 429 carries Retry-After and a rateLimit object naming the window that
    closed. A 403 with a quota object means a plan capacity limit such as apps
    or tracked keyword markets, which is a different problem from a rate limit.
    A 402 with an entitlement object means the workspace needs a plan.


    Positions are 1-based and null means checked but not found within the
    captured depth, never zero. Daily granularity uses UTC dates.
  version: 1.3.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /admin/support/workspaces/{workspaceId}/run-daily:
    post:
      tags:
        - admin
      summary: Queue the daily run for one workspace
      operationId: SupportController_runDaily
      parameters:
        - name: workspaceId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupportActionDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    SupportActionDto:
      type: object
      properties:
        confirm:
          type: boolean
          description: Must be true. A support action is never taken by accident
        reason:
          type: string
          minLength: 8
          maxLength: 200
          description: Why the action was taken. Stored in the support audit trail
      required:
        - confirm
        - reason
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````