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

# Export Consumer Profiles rows

> Export creditor Consumer Profiles rows as CSV using the same filters and sorting as the list endpoint.



## OpenAPI

````yaml /api/creditor.openapi.yaml get /manage-consumers/export
openapi: 3.1.0
info:
  title: YouNegotiate Creditor API
  version: '2.0'
  description: >-
    Stateless API endpoints for creditor portal authentication and account
    access.
servers:
  - url: https://api.creditor.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public creditor domain system and health endpoints.
  - name: Authentication
    description: Creditor registration, login, password, and email verification endpoints.
  - name: Account Settings
    description: >-
      Authenticated creditor profile, contact, operating-hours, and
      profile-image endpoints.
  - name: Account Profile
    description: >-
      Creditor onboarding profile, membership, billing, and setup status
      endpoints.
  - name: Setup Wizard
    description: >-
      Creditor setup wizard status, required-step completion, and optional-step
      completion.
  - name: Dashboard
    description: Creditor dashboard work queues and performance widgets.
  - name: Import / Export
    description: >-
      Creditor consumer import upload sessions, queued imports, history,
      downloads, and failed-row files.
  - name: Membership Settings
    description: >-
      Creditor membership dashboard, plan changes, payment method, cancellation,
      special-plan inquiry, and over-limit retry endpoints.
  - name: Merchant Account
    description: >-
      Existing merchant processor credentials, Tilled onboarding, and merchant
      application endpoints.
  - name: Header Profiles
    description: >-
      CSV header profile upload, mapping, download, and setup wizard completion
      endpoints.
  - name: SFTP Connections
    description: >-
      Creditor-managed SFTP connection profiles for imports, exports, and setup
      wizard completion.
  - name: Sub Accounts
    description: >-
      Creditor-managed sub account list, export, create, update, and delete
      endpoints.
  - name: Pay Terms Offers
    description: >-
      Creditor-managed master, sub-account, group, and group-sub-account Pay
      Terms endpoints.
  - name: Individual Custom Offers
    description: Creditor individual custom offer list endpoints.
  - name: Negotiations
    description: >-
      Creditor negotiation work queues, including notice responses and offer
      review counts.
  - name: Communications / CFPB Validation Letter
    description: >-
      CFPB Validation Letter tables, secure EcoLetter send/resend, CSV export,
      and print/download actions.
  - name: Communications / EcoLetter Template
    description: >-
      Creditor EcoLetter template management for secure eLetter communications
      and campaigns.
  - name: Communications / Groups
    description: >-
      Creditor communication group management for dynamic consumer targeting and
      campaign selection.
  - name: Communications / Schedule Campaign
    description: >-
      Creditor EcoLetter campaign scheduling, quote, immediate send, and
      delivery queue endpoints.
  - name: Communications / Campaign Tracker
    description: >-
      Creditor campaign tracker reporting, refresh, and consumer export
      endpoints.
  - name: Consumer Profiles
    description: Creditor Consumer Profiles list, filter options, and CSV export endpoints.
  - name: Terms & Conditions
    description: Creditor-managed master and sub-account Terms & Conditions templates.
  - name: About Us & Contact
    description: Creditor-managed company About Us content shown to consumers.
  - name: Logo & Links
    description: >-
      Creditor-managed master and sub-account personalized logo colors, size,
      and consumer link metadata.
  - name: Users
    description: >-
      Master creditor user management, invitations, and account deletion
      endpoints.
paths:
  /manage-consumers/export:
    get:
      tags:
        - Consumer Profiles
      summary: Export Consumer Profiles rows
      description: >-
        Export creditor Consumer Profiles rows as CSV using the same filters and
        sorting as the list endpoint.
      operationId: creditorExportManageConsumers
      parameters:
        - $ref: '#/components/parameters/ManageConsumerSearch'
        - $ref: '#/components/parameters/ManageConsumerStatus'
        - $ref: '#/components/parameters/ManageConsumerSubclient'
        - $ref: '#/components/parameters/ManageConsumerWindow'
        - $ref: '#/components/parameters/ManageConsumerSort'
        - $ref: '#/components/parameters/SortDirection'
      responses:
        '200':
          description: CSV download returned.
          content:
            text/csv:
              schema:
                type: string
                format: binary
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '403':
          $ref: '#/components/responses/ActiveMembershipRequired'
        '422':
          $ref: '#/components/responses/ValidationError'
      security:
        - bearerAuth: []
components:
  parameters:
    ManageConsumerSearch:
      name: search
      in: query
      required: false
      description: >-
        Search consumer name, master account number, original account number,
        mobile, email, SSN last four, account name, sub-account name, or
        sub-account account number.
      schema:
        type: string
        maxLength: 255
    ManageConsumerStatus:
      name: status
      in: query
      required: false
      description: Filter by one Consumer Profiles status bucket.
      schema:
        type: string
        enum:
          - uploaded
          - joined
          - expired_negotiation
          - payment_declined
          - cancelled_plan
          - agreed_settlement_pending_payment
          - agreed_payment_plan_pending_payment
          - hold
          - payment_setup
          - active_settlement
          - active_payment_plan
          - settled
          - dispute
          - not_paying
          - deactivated
    ManageConsumerSubclient:
      name: subclient
      in: query
      required: false
      description: >-
        Filter by sub-account ID. Assigned sub-account creditor users are always
        forced to their assigned sub-account.
      schema:
        type: integer
    ManageConsumerWindow:
      name: window
      in: query
      required: false
      description: >-
        Include accounts created within the last N days and exclude deactivated
        accounts.
      schema:
        type: integer
        minimum: 1
        maximum: 3650
    ManageConsumerSort:
      name: sort
      in: query
      required: false
      description: Sort field.
      schema:
        type: string
        default: placement_date
        enum:
          - master_account_number
          - name
          - account_name
          - sub_name
          - placement_date
          - account_status
          - status
    SortDirection:
      name: direction
      in: query
      required: false
      description: Sort direction.
      schema:
        type: string
        default: desc
        enum:
          - asc
          - desc
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
    ActiveMembershipRequired:
      description: Authenticated creditor does not have an active membership.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: An active membership is required.
    ValidationError:
      description: Request validation failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationErrorResponse'
  schemas:
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    ValidationErrorResponse:
      type: object
      required:
        - message
        - errors
      properties:
        message:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum token

````