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

# Get rep share customer cases



## OpenAPI

````yaml get /beta/guardian-ops/rep-share/customers/{id}/cases
openapi: 3.0.1
info:
  title: abusix-api
  version: '2026-04-08T06:45:02Z'
servers:
  - url: https://api.abusix.com
security: []
paths:
  /beta/guardian-ops/rep-share/customers/{id}/cases:
    get:
      parameters:
        - name: x-abusix-accountid
          in: header
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: string
        - name: cursor
          in: query
          schema:
            type: string
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepShareCaseSummaryList'
        '400':
          description: 400 response
          content: {}
        '401':
          description: 401 response
          content: {}
        '404':
          description: 404 response
          content: {}
components:
  schemas:
    RepShareCaseSummaryList:
      required:
        - items
      type: object
      properties:
        items:
          type: array
          description: Array of case summaries for the current page
          items:
            required:
              - event_count
              - event_types
              - id
              - last_event_date
              - state
            type: object
            properties:
              event_count:
                type: integer
                description: Total number of events in this case
              event_types:
                type: array
                description: Types of events in this case
                items:
                  type: string
              id:
                type: string
                description: Unique case identifier
              last_event_date:
                type: string
                description: Timestamp of the most recent event
                format: date-time
              state:
                type: string
                description: >-
                  Current state of the case: NEW, IN_PROGRESS, RESOLVED, or
                  CLOSED
        next_cursor:
          type: string
          description: Cursor for the next page, null if no more results

````