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

# connectorRequests



## OpenAPI

````yaml /api-reference/openapi.json get /api/connector-requests/connector-requests
openapi: 3.0.3
info:
  title: Parable API
  description: >-
    The REST API for your Parable workspace: manage connectors and taps, explore
    your data catalog, upload artifacts, and administer users and roles.
  version: v1
servers:
  - url: https://api.askparable.com
    description: Production
security: []
paths:
  /api/connector-requests/connector-requests:
    get:
      tags:
        - connector-requests
      summary: connectorRequests
      operationId: ConnectorRequestsConnectorRequestsHandler
      parameters:
        - description: >-
            Workspace slug. Overrides subdomain-based workspace resolution when
            provided.
          in: header
          name: X-Tenant
          required: false
          schema:
            example: acme
            type: string
        - description: Optional request correlation ID echoed back in the response.
          in: header
          name: X-Request-ID
          required: false
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            format: uuid
            type: string
        - in: query
          name: status
          required: false
          schema:
            $ref: '#/components/schemas/ConnectorRequestStatusEnum'
        - in: query
          name: limit
          required: false
          schema:
            format: double
            type: number
        - in: query
          name: offset
          required: false
          schema:
            format: double
            type: number
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/ConnectorRequestsPaginatedResponse'
                  links:
                    $ref: '#/components/schemas/ResponseLinks'
                  meta:
                    $ref: '#/components/schemas/ResponseMeta'
                required:
                  - data
                  - meta
                type: object
          description: Successful response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Bad request
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Internal server error
      security:
        - bearerAuth: []
components:
  schemas:
    ConnectorRequestStatusEnum:
      description: |-
        Connector Request & Research Enumerations
        Enums for the connector request and research lifecycle (EDR-0013).
        Lifecycle status of a connector request (demand signal).
        Tracks the request from submission through resolution.
      enum:
        - pending
        - researching
        - research_complete
        - approved
        - rejected
      type: string
    ConnectorRequestsPaginatedResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ConnectorRequestSummary'
          type: array
        limit:
          description: >-
            Signed 64-bit integer; range bounded by JavaScript's safe-integer
            ceiling.
          format: int64
          type: integer
        offset:
          description: >-
            Signed 64-bit integer; range bounded by JavaScript's safe-integer
            ceiling.
          format: int64
          type: integer
        total:
          description: >-
            Signed 64-bit integer; range bounded by JavaScript's safe-integer
            ceiling.
          format: int64
          type: integer
      required:
        - items
        - total
        - limit
        - offset
      type: object
    ResponseLinks:
      properties:
        first:
          nullable: true
          type: string
        last:
          nullable: true
          type: string
        next:
          nullable: true
          type: string
        prev:
          nullable: true
          type: string
      type: object
    ResponseMeta:
      properties:
        requestId:
          description: Unique identifier for the request
          type: string
        totalCount:
          description: Total count of items for paginated responses
          nullable: true
          type: integer
      required:
        - requestId
      type: object
    Error:
      properties:
        error:
          type: string
      type: object
    ConnectorRequestSummary:
      description: |-
        Customer-facing view of a connector request.
        Omits sensitive admin/pipeline fields.
      properties:
        connectorName:
          description: An objects name
          type: string
        createdAt:
          description: ISO8601 datetime string
          type: string
        id:
          description: UUID v4 with automatic base62 encoding for client-facing APIs
          type: string
        notes:
          description: Markdown text
          type: string
        resolvedGroupingId:
          description: Resolved vendor grouping, if matched
          type: string
        resolvedVendorId:
          description: Resolved vendor from the connector catalog, if matched
          type: string
        resultConnectorId:
          description: Resulting connector ID after approval
          type: string
        status:
          $ref: '#/components/schemas/ConnectorRequestStatusEnum'
        updatedAt:
          description: ISO8601 datetime string
          type: string
      required:
        - id
        - createdAt
        - updatedAt
        - connectorName
        - status
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````