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

# Api Assistant Task Continue

> Step-limit HITL. A task paused at its step ceiling (status `awaiting_continue`) is either
CONTINUED — resumed via the normal resume path (resume_from_task_id, NOT a follow-up), which gets
the full unclamped budget so it finishes uninterrupted instead of re-hitting the same cap — or
STOPPED, which finalizes it cleanly (no failure).



## OpenAPI

````yaml /api/openapi.json post /api/assistant/tasks/{task_id}/continue
openapi: 3.1.0
info:
  description: >-
    Environment-aware APIs for Platinur configuration, integrations, operations,
    promotions, scheduling, monitoring, and assistant tasks.
  title: Platinur Control Plane API
  version: 1.0.0-rc3
servers:
  - description: Local Platinur control-plane API
    url: http://localhost:8080
security: []
paths:
  /api/assistant/tasks/{task_id}/continue:
    post:
      tags:
        - Assistant
      summary: Api Assistant Task Continue
      description: >-
        Step-limit HITL. A task paused at its step ceiling (status
        `awaiting_continue`) is either

        CONTINUED — resumed via the normal resume path (resume_from_task_id, NOT
        a follow-up), which gets

        the full unclamped budget so it finishes uninterrupted instead of
        re-hitting the same cap — or

        STOPPED, which finalizes it cleanly (no failure).
      operationId: api_assistant_task_continue_api_assistant_tasks__task_id__continue_post
      parameters:
        - in: path
          name: task_id
          required: true
          schema:
            title: Task Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````