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

# Reset sync status for a source type

> Delete the sync log entry for a source type, forcing a full re-index.

Removes the row(s) for *name* from ``knowledge.source_sync_log``.
On the next Knowledge Worker run, the source type will be processed
from the beginning (no watermark / high-water-mark).

Used by the "Forçar re-sincronização" button in the Console UI
(PRD-008 section 10.9).



## OpenAPI

````yaml /api-reference/knowledge-api.json delete /v1/knowledge/source-types/{name}/sync-status
openapi: 3.1.0
info:
  title: Strattum Knowledge API
  description: >-
    REST API that serves semantic document search — embeddings via the
    configured LLM provider, indexed in Qdrant, with metadata stored in
    PostgreSQL. (PRD-004, Workstream 1.4)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/knowledge/source-types/{name}/sync-status:
    delete:
      tags:
        - source-types
      summary: Reset sync status for a source type
      description: |-
        Delete the sync log entry for a source type, forcing a full re-index.

        Removes the row(s) for *name* from ``knowledge.source_sync_log``.
        On the next Knowledge Worker run, the source type will be processed
        from the beginning (no watermark / high-water-mark).

        Used by the "Forçar re-sincronização" button in the Console UI
        (PRD-008 section 10.9).
      operationId: reset_sync_status_v1_knowledge_source_types__name__sync_status_delete
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
            pattern: ^[a-z][a-z0-9_-]*$
            title: Name
      responses:
        '204':
          description: Sync status cleared; next worker run will re-index from scratch
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: PostgreSQL is unavailable
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````