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

# Check Pipeline Access

> Check if the current user's team has access to custom processors.
Intentionally not gated by ensure_pipeline_access so the frontend can determine access status.



## OpenAPI

````yaml https://www.datalab.to/openapi.json get /api/v1/custom_pipelines/access
openapi: 3.1.0
info:
  title: Datalab API
  version: 0.0.1
servers:
  - url: https://www.datalab.to
    description: Datalab API
security: []
paths:
  /api/v1/custom_pipelines/access:
    get:
      tags:
        - Custom Pipelines (Deprecated)
      summary: Check Pipeline Access
      description: >-
        Check if the current user's team has access to custom processors.

        Intentionally not gated by ensure_pipeline_access so the frontend can
        determine access status.
      operationId: check_pipeline_access_api_v1_custom_pipelines_access_get
      parameters:
        - name: wos-session
          in: cookie
          required: false
          schema:
            type: string
            title: Wos-Session
        - name: datalab_active_team
          in: cookie
          required: false
          schema:
            type: string
            title: Datalab Active Team
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomProcessorAccessResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    CustomProcessorAccessResponse:
      properties:
        has_access:
          type: boolean
          title: Has Access
          description: Whether the user's team can access custom processors
        can_create:
          type: boolean
          title: Can Create
          description: Whether the user can create new custom processors (superuser only)
          default: false
        can_iterate:
          type: boolean
          title: Can Iterate
          description: >-
            Whether the user can iterate on existing custom processors
            (superuser or team override)
          default: false
      type: object
      required:
        - has_access
      title: CustomProcessorAccessResponse
      description: Response for processor access check.
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````