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

# Download sample creditor profile CSV

> Download a sample creditor profile CSV containing the expected import headers and example rows.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /import-creditor-profiles/sample-csv
openapi: 3.1.0
info:
  title: YouNegotiate EcoMail Hub API
  version: '2.0'
  description: Stateless API endpoints for EcoMail Hub / EcoPortal users.
servers:
  - url: https://api.ecomailhub.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public EcoMail Hub domain system and health endpoints.
  - name: Authentication
    description: EcoMail Hub login, logout, password reset, and password change endpoints.
  - name: Profile
    description: Authenticated EcoMail Hub user profile endpoints.
  - name: Dashboard
    description: EcoMail Hub dashboard summary and notice-response bucket endpoints.
  - name: Manage Consumers
    description: >-
      EcoMail Hub consumer identity grouping and notice-response count
      endpoints.
  - name: Manage Creditors
    description: >-
      EcoMail Hub creditor profile and company-only member profile table
      endpoints.
  - name: Import Creditor Profiles
    description: EcoMail Hub creditor profile CSV import endpoints.
  - name: Manage Notice Response
    description: >-
      EcoMail Hub top-level notice-response review, reassignment, and close
      endpoints.
  - name: Manage Users
    description: EcoMail Hub user account management endpoints.
  - name: Reports
    description: EcoMail Hub one-time and scheduled CSV report endpoints.
  - name: Communications
    description: EcoMail Hub communication template editor endpoints.
paths:
  /import-creditor-profiles/sample-csv:
    get:
      tags:
        - Import Creditor Profiles
      summary: Download sample creditor profile CSV
      description: >-
        Download a sample creditor profile CSV containing the expected import
        headers and example rows.
      operationId: ecomailhubDownloadCreditorProfileImportSampleCsv
      responses:
        '200':
          description: Sample creditor profile CSV returned.
          headers:
            Content-Disposition:
              schema:
                type: string
              description: Attachment filename is creditor_profiles_sample.csv.
          content:
            text/csv:
              schema:
                type: string
              example: >
                "Company Name","Company Address 1","Company Address
                2",City,State,Zip,Phone,URL,"Company Email",Passthrough,"Contact
                1 First Name","Contact 1 Last Name","Contact 1 Email","Contact 1
                Phone","Contact 2 First Name","Contact 2 Last Name","Contact 2
                Email","Contact 2 Phone","Contact 3 First Name","Contact 3 Last
                Name","Contact 3 Email","Contact 3 Phone"

                "ABC Collections Inc","123 Main Street","Suite 100","New
                York",NY,10001,+12125551234,https://www.abc-collections.com,info@abc-collections.com,REF001,John,Doe,john.doe@abc-collections.com,+12125551111,Jane,Smith,jane.smith@abc-collections.com,+12125552222,Bob,Johnson,bob.johnson@abc-collections.com,+12125553333
        '401':
          $ref: '#/components/responses/Unauthenticated'
      security:
        - bearerAuth: []
components:
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: Unauthenticated.
  schemas:
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum

````