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

# Get common receivers

> List frequently used receivers for a customer's invoices



## OpenAPI

````yaml get /v1/invoices/customers/{id}/receivers
openapi: 3.0.0
info:
  title: Invoices API
  version: 1.0.0
  description: API documentation for Invoices management package
servers: []
security:
  - bearerAuth: []
paths:
  /v1/invoices/customers/{id}/receivers:
    get:
      tags:
        - Customers
      summary: Get common receivers
      description: List frequently used receivers for a customer's invoices
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Customer UUID
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 10
          description: Maximum number of receivers to return
        - name: min_usage
          in: query
          schema:
            type: integer
            minimum: 1
            default: 2
          description: Minimum usage count
      responses:
        '200':
          description: List of common receivers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonReceivers'
        '400':
          description: Invalid customer ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Customer not found
components:
  schemas:
    CommonReceivers:
      type: object
      properties:
        receivers:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
                example: 123e4567-e89b-12d3-a456-426614174000
              name:
                type: string
                example: Receiver GmbH
              address:
                type: string
                example: Hauptstrasse 10
              zip:
                type: string
                example: '3000'
              city:
                type: string
                example: Bern
              country:
                type: string
                example: Switzerland
              usage_count:
                type: integer
                example: 15
              last_used:
                type: string
                format: date-time
                example: '2024-03-21T10:00:00Z'
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: string
          description: Error code
          example: invalid_input
        message:
          type: string
          description: Error message
          example: Invalid input data
        details:
          type: object
          description: Additional error details
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````