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

# Retry Garmin Backfill Type

> Retry backfill for a specific data type in the current window.

Resets the type status to pending and triggers a new backfill attempt
for the current window context. Use when a type has timed out or
needs re-processing.

**Valid Type Names:**
sleeps, dailies, activities, activityDetails, hrv

Returns:
    Dict with retry status



## OpenAPI

````yaml https://api.openwearables.io/openapi.json post /api/v1/providers/garmin/users/{user_id}/backfill/{type_name}/retry
openapi: 3.1.0
info:
  title: Open Wearables API
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/providers/garmin/users/{user_id}/backfill/{type_name}/retry:
    post:
      tags:
        - 'External: Data Sync'
      summary: Retry Garmin Backfill Type
      description: |-
        Retry backfill for a specific data type in the current window.

        Resets the type status to pending and triggers a new backfill attempt
        for the current window context. Use when a type has timed out or
        needs re-processing.

        **Valid Type Names:**
        sleeps, dailies, activities, activityDetails, hrv

        Returns:
            Dict with retry status
      operationId: >-
        retry_garmin_backfill_type_api_v1_providers_garmin_users__user_id__backfill__type_name__retry_post
      parameters:
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: User Id
        - name: type_name
          in: path
          required: true
          schema:
            type: string
            title: Type Name
        - name: X-Open-Wearables-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Open-Wearables-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Retry Garmin Backfill Type Api V1 Providers Garmin
                  Users  User Id  Backfill  Type Name  Retry Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
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
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /api/v1/auth/login

````