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

# Get Provider Defaults

> Get default rclone configuration for a provider type.

**Required Role:** VIEWER or higher

This endpoint shows which default settings will be automatically applied
when you create a Task using locations of this provider type. These defaults
improve compatibility and performance but can be overridden by providing your
own rclone_config values in the Task.

Use this endpoint to:
- See what defaults are applied for a provider before creating a task
- Understand which settings you can override in Task.rclone_config
- Learn about provider-specific optimizations

Returns:
    Dictionary of default rclone config settings for the provider.
    Returns empty dict {} if provider has no special defaults.

Example responses:
    S3_COMPATIBLE: {"s3_no_check_bucket": true}
    B2: {"transfers": 32, "b2_hard_delete": false, "fast_list": true}
    S3: {}



## OpenAPI

````yaml GET /v1/teams/{team_id}/locations/defaults/{location_type}
openapi: 3.1.0
info:
  title: Data Raven API
  description: Cloud-to-cloud data transfer platform powered by RClone
  version: 0.5.0
servers: []
security: []
paths:
  /v1/teams/{team_id}/locations/defaults/{location_type}:
    get:
      tags:
        - Locations
      summary: Get Provider Defaults
      description: >-
        Get default rclone configuration for a provider type.


        **Required Role:** VIEWER or higher


        This endpoint shows which default settings will be automatically applied

        when you create a Task using locations of this provider type. These
        defaults

        improve compatibility and performance but can be overridden by providing
        your

        own rclone_config values in the Task.


        Use this endpoint to:

        - See what defaults are applied for a provider before creating a task

        - Understand which settings you can override in Task.rclone_config

        - Learn about provider-specific optimizations


        Returns a dictionary of default rclone config settings for the provider.

        Returns an empty object if the provider has no special defaults.


        Example responses:


        ```json

        // S3_COMPATIBLE

        {"s3_no_check_bucket": true}


        // B2

        {"transfers": 32, "b2_hard_delete": false, "fast_list": true}


        // S3

        {}

        ```
      operationId: >-
        get_provider_defaults_v1_teams__team_id__locations_defaults__location_type__get
      parameters:
        - name: location_type
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/LocationType'
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Provider Defaults V1 Teams  Team Id  Locations
                  Defaults  Location Type  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    LocationType:
      type: string
      enum:
        - s3
        - azure_blob
        - gcs
        - r2
        - b2
        - wasabi
        - railway
        - oracle_object_storage_s3
        - s3_compatible
        - tigris
        - digitalocean_spaces
        - hetzner
        - rabata
      title: LocationType
      description: Cloud storage provider types.
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````