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

# Operation Aids parameters list



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/operations/{id}/parameters
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/operations/{id}/parameters:
    get:
      tags:
        - Operations
      summary: Operation Aids parameters list
      operationId: partners.operations.parameters.index
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
        - name: type
          in: query
          schema:
            type:
              - string
              - 'null'
            enum:
              - b2c
              - b2b
        - name: commitment_date
          in: query
          schema:
            type:
              - string
              - 'null'
      responses:
        '200':
          description: '`OperationParameterCollection`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperationParameterCollection'
        '422':
          $ref: '#/components/responses/ValidationException'
components:
  schemas:
    OperationParameterCollection:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/OperationParameterResource'
      required:
        - data
      title: OperationParameterCollection
    OperationParameterResource:
      type: object
      properties:
        key:
          type: string
        description:
          type: string
        type:
          type: string
          description: text, number, choice
        options:
          type: array
          items:
            type: string
        definition:
          type: array
          items:
            type: string
        usage:
          type: array
          items:
            type: string
            enum:
              - calculation
              - eligibility
      required:
        - key
        - description
        - type
        - options
        - definition
        - usage
      title: OperationParameterResource
  responses:
    ValidationException:
      description: Validation error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Errors overview.
              errors:
                type: object
                description: A detailed description of each field that failed validation.
                additionalProperties:
                  type: array
                  items:
                    type: string
            required:
              - message
              - errors

````