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

# List conversation assignments

> Get all assignments for a conversation, most recent first.



## OpenAPI

````yaml /api/platform/v1/openapi-platform.yaml get /whatsapp/conversations/{conversation_id}/assignments
openapi: 3.1.0
info:
  title: Kapso Platform API
  version: 0.2.0
  description: >
    Build WhatsApp messaging into your product. Manage customers, connect phone
    numbers, send broadcasts, and handle conversations.
servers:
  - url: https://api.kapso.ai/platform/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Customers
    description: Manage customer accounts
  - name: Setup Links
    description: WhatsApp onboarding via embedded signup
  - name: Phone Numbers
    description: Connect and manage WhatsApp numbers
  - name: Webhooks
    description: Subscribe to WhatsApp events
  - name: Display Names
    description: Update WhatsApp business display names
  - name: Broadcasts
    description: |
      Send template messages at scale

      **Alpha**: This API is in alpha and subject to change
  - name: Conversations
    description: Manage conversation state
  - name: Media
    description: Upload media files for WhatsApp messaging
  - name: Users
    description: Manage project team members
  - name: Inbox Embeds
    description: Create and manage embeddable inbox access links
  - name: Webhook Deliveries
    description: View webhook delivery attempts and their status
  - name: External API Logs
    description: View logs of external API calls made by the project
  - name: Log Search
    description: Search log events across API, Meta, workflow, and webhook sources
  - name: Events
    description: Emit and query project-scoped events
  - name: Provider Models
    description: List available AI provider models
  - name: WhatsApp Flows
    description: Build interactive WhatsApp Flows for surveys and forms
  - name: Contacts
    description: Manage WhatsApp contacts
paths:
  /whatsapp/conversations/{conversation_id}/assignments:
    parameters:
      - name: conversation_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Conversations
      summary: List conversation assignments
      description: Get all assignments for a conversation, most recent first.
      operationId: listConversationAssignments
      parameters:
        - name: per_page
          in: query
          schema:
            type: integer
            minimum: 1
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: Assignments retrieved
          headers:
            X-Total:
              schema:
                type: integer
            X-Total-Pages:
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationAssignmentListResponse'
              examples:
                success:
                  value:
                    data:
                      - id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        user_id: f1e2d3c4-b5a6-9870-fedc-ba0987654321
                        created_by_user_id: f1e2d3c4-b5a6-9870-fedc-ba0987654321
                        notes: Handling customer inquiry about pricing
                        active: true
                        created_at: '2026-01-19T10:30:00Z'
                      - id: b2c3d4e5-f6a7-8901-bcde-f12345678901
                        user_id: e2d3c4b5-a697-8076-edcb-a09876543210
                        created_by_user_id: f1e2d3c4-b5a6-9870-fedc-ba0987654321
                        notes: null
                        active: false
                        created_at: '2026-01-18T14:20:00Z'
                    meta:
                      page: 1
                      per_page: 25
                      total_pages: 1
                      total_count: 2
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
components:
  schemas:
    ConversationAssignmentListResponse:
      type: object
      required:
        - data
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ConversationAssignment'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
    ConversationAssignment:
      type: object
      required:
        - id
        - user_id
        - active
        - created_at
      properties:
        id:
          type: string
          format: uuid
        user_id:
          type: string
          format: uuid
          description: ID of the user assigned to the conversation
        created_by_user_id:
          type:
            - string
            - 'null'
          format: uuid
          description: ID of the user who created the assignment
        notes:
          type:
            - string
            - 'null'
          description: Optional notes about the assignment
        active:
          type: boolean
          description: Whether this assignment is currently active
        created_at:
          type: string
          format: date-time
    PaginationMeta:
      type: object
      required:
        - page
        - per_page
        - total_pages
        - total_count
      properties:
        page:
          type: integer
          minimum: 1
        per_page:
          type: integer
          minimum: 1
        total_pages:
          type: integer
          minimum: 0
        total_count:
          type: integer
          minimum: 0
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  responses:
    UnauthorizedError:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFoundError:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````