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



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/operations/{id}
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}:
    get:
      tags:
        - Operations
      summary: Operation details
      operationId: partners.operations.show
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`OperationResource`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/OperationResource'
                required:
                  - data
components:
  schemas:
    OperationResource:
      type: object
      properties:
        id:
          type: integer
        code:
          type: string
        operation_name:
          type: string
        can_b2b:
          type: boolean
        can_b2c:
          type: boolean
        has_cdp:
          type: boolean
        has_material:
          type: boolean
      required:
        - id
        - code
        - operation_name
        - can_b2b
        - can_b2c
        - has_cdp
        - has_material
      title: OperationResource

````