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

# Get Workspace Connector Sync Logs

> Fetch one `workspace_connector_sync_log` by id, workspace-scoped. Returns 404 when the id is outside the caller's workspace.



## OpenAPI

````yaml GET /v1/workspace-connector-sync-logs/{id}
openapi: 3.1.0
info:
  title: Well Document API
  version: 1.0.0
  description: API for uploading and managing financial documents in the Well platform
servers:
  - url: https://api.wellapp.ai
security: []
paths:
  /v1/workspace-connector-sync-logs/{id}:
    get:
      tags:
        - Records read endpoints
      summary: Get workspace connector sync log
      description: >-
        Fetch one `workspace_connector_sync_log` by id, workspace-scoped.
        Returns 404 when the id is outside the caller's workspace.
      operationId: getWorkspaceConnectorSyncLogs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: workspaceId
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The workspace_connector_sync_log record.
          content:
            application/json:
              example:
                data:
                  type: workspace_connector_sync_log
                  id: uuid
                  attributes: {}
        '404':
          description: workspace_connector_sync_log not found / not in workspace scope.

````