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

# Convention operations list



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/conventions/{id}/operations
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/conventions/{id}/operations:
    get:
      tags:
        - Conventions
      summary: Convention operations list
      operationId: partners.conventions.operations.index
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`ConventionOperationCollection`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConventionOperationCollection'
components:
  schemas:
    ConventionOperationCollection:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ConventionOperationResource'
      required:
        - data
      title: ConventionOperationCollection
    ConventionOperationResource:
      type: object
      properties:
        id:
          type: integer
        code:
          type: string
        operation_name:
          type: string
        price:
          type: string
        incentive_type:
          type: string
        price_type:
          type: string
          description: fix vs unitary (price x kwhc)
        precarity_type:
          type: string
          description: unique, modeste, intermediaire
        bonification:
          type: string
          description: cee, cdp
      required:
        - id
        - code
        - operation_name
        - price
        - incentive_type
        - price_type
        - precarity_type
        - bonification
      title: ConventionOperationResource

````