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

# List custom worksite operation statuses



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/custom-worksite-operation-statuses
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/custom-worksite-operation-statuses:
    get:
      tags:
        - CustomWorksiteOperationStatus
      summary: List custom worksite operation statuses
      operationId: partners.custom-worksite-operation-statuses.index
      parameters:
        - name: page
          in: query
          schema:
            type:
              - integer
              - 'null'
            minimum: 1
        - name: per_page
          in: query
          schema:
            type:
              - integer
              - 'null'
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: '`CustomWorksiteOperationStatusCollection`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomWorksiteOperationStatusCollection'
        '422':
          $ref: '#/components/responses/ValidationException'
components:
  schemas:
    CustomWorksiteOperationStatusCollection:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CustomWorksiteOperationStatusResource'
      required:
        - data
      title: CustomWorksiteOperationStatusCollection
    CustomWorksiteOperationStatusResource:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        worksite_operation_status:
          type: string
        worksite_operation_label:
          type:
            - string
            - 'null'
        position:
          type: string
        active:
          type: string
      required:
        - id
        - label
        - worksite_operation_status
        - worksite_operation_label
        - position
        - active
      title: CustomWorksiteOperationStatusResource
  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

````