> ## 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.

# List Location Verifications



## OpenAPI

````yaml GET /v1/teams/{team_id}/locations/{location_id}/verifications
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/{location_id}/verifications:
    get:
      tags:
        - Locations
      summary: List Location Verifications
      description: |-
        Get paginated verification history for a location (newest first).

        **Required Role:** VIEWER or higher

        Each record captures what rclone returned at a point in time — bucket
        existence, permission grid (list/read/write/delete), region match,
        and structured error codes on failure. Records cascade-delete with
        their parent location.

        Attribution (who triggered, when, from where) lives in the audit_logs
        feed — this endpoint only returns the verification result payload.
      operationId: >-
        list_location_verifications_v1_teams__team_id__locations__location_id__verifications_get
      parameters:
        - name: location_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Location Id
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number
            default: 1
            title: Page
          description: Page number
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Items per page
            default: 25
            title: Limit
          description: Items per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaginatedResponse_LocationVerificationResponse_
        '404':
          description: Location not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    PaginatedResponse_LocationVerificationResponse_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/LocationVerificationResponse'
          type: array
          title: Data
        pagination:
          $ref: '#/components/schemas/PaginationResponse'
      type: object
      required:
        - data
        - pagination
      title: PaginatedResponse[LocationVerificationResponse]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LocationVerificationResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        location_id:
          type: string
          format: uuid
          title: Location Id
        verified:
          type: boolean
          title: Verified
        bucket_exists:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Bucket Exists
        can_list:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can List
        can_read:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can Read
        can_write:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can Write
        can_delete:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Can Delete
        region:
          anyOf:
            - type: string
            - type: 'null'
          title: Region
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        vault_field_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Vault Field Name
        vault_reference:
          anyOf:
            - type: string
            - type: 'null'
          title: Vault Reference
        vault_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Vault Type
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - location_id
        - verified
        - created_at
      title: LocationVerificationResponse
      description: >-
        A single verification record.


        Used as the response body for both ``POST /verify`` (the record that was

        just created) and ``GET /verifications`` (paginated history). Clients
        get

        one consistent shape for "what happened during a verification."
    PaginationResponse:
      properties:
        page:
          type: integer
          title: Page
        limit:
          type: integer
          title: Limit
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - limit
        - total
        - total_pages
      title: PaginationResponse
      description: Pagination metadata in responses.
    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

````