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

# List manage creditor profiles

> List creditor profile and company-only member rows with profile status, notice-response counts, and table action availability.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /manage-creditor-profiles
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:
  /manage-creditor-profiles:
    get:
      tags:
        - Manage Creditors
      summary: List manage creditor profiles
      description: >-
        List creditor profile and company-only member rows with profile status,
        notice-response counts, and table action availability.
      operationId: ecomailhubListManageCreditorProfiles
      parameters:
        - name: search
          in: query
          required: false
          schema:
            type: string
            maxLength: 255
          description: Search by company name, phone, address, city, or URL.
        - name: sort
          in: query
          required: false
          schema:
            type: string
            enum:
              - company-name
              - company-status
              - company-url
              - company-address1
              - company-city
              - company-phone
              - pending
              - added
              - returned
            default: company-name
        - name: direction
          in: query
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
            default: asc
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
      responses:
        '200':
          description: Creditor profile rows returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManageCreditorProfileListResponse'
              example:
                data:
                  - id: 22
                    row_type: creditor_profile
                    company_name: Acme Finance
                    company_url: https://acme.example.test
                    company_address_1: 400 Member Road
                    company_city: Dallas
                    company_phone: '3105550199'
                    company_phone_label: (310) 555-0199
                    profile_status:
                      value: active_member
                      label: Active Member
                      short_label: AM
                    pending_notice_responses_count: 1
                    completed_notice_responses_count: 2
                    rejected_notice_responses_count: 1
                    actions:
                      can_view: true
                      can_edit: false
                      can_delete: false
                pagination:
                  current_page: 1
                  from: 1
                  last_page: 1
                  per_page: 25
                  to: 1
                  total: 1
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '422':
          $ref: '#/components/responses/ValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    ManageCreditorProfileListResponse:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EcomailhubCreditorProfile'
        pagination:
          $ref: '#/components/schemas/Pagination'
    EcomailhubCreditorProfile:
      type: object
      required:
        - id
        - row_type
        - company_name
        - company_url
        - company_address_1
        - company_city
        - company_phone
        - company_phone_label
        - profile_status
        - pending_notice_responses_count
        - completed_notice_responses_count
        - rejected_notice_responses_count
        - actions
      properties:
        id:
          type: integer
          example: 22
        row_type:
          type: string
          enum:
            - creditor_profile
            - company
          example: creditor_profile
        company_name:
          type:
            - string
            - 'null'
          example: Acme Finance
        company_url:
          type:
            - string
            - 'null'
          example: https://acme.example.test
        company_address_1:
          type:
            - string
            - 'null'
          example: 400 Member Road
        company_city:
          type:
            - string
            - 'null'
          example: Dallas
        company_phone:
          type:
            - string
            - 'null'
          example: '3105550199'
        company_phone_label:
          type:
            - string
            - 'null'
          example: (310) 555-0199
        profile_status:
          $ref: '#/components/schemas/EcomailhubCreditorProfileStatus'
        pending_notice_responses_count:
          type: integer
          minimum: 0
          example: 1
        completed_notice_responses_count:
          type: integer
          minimum: 0
          example: 2
        rejected_notice_responses_count:
          type: integer
          minimum: 0
          example: 1
        actions:
          $ref: '#/components/schemas/EcomailhubCreditorProfileActions'
    Pagination:
      type: object
      required:
        - current_page
        - from
        - last_page
        - per_page
        - to
        - total
      properties:
        current_page:
          type: integer
          example: 1
        from:
          type:
            - integer
            - 'null'
          example: 1
        last_page:
          type: integer
          example: 1
        per_page:
          type: integer
          example: 25
        to:
          type:
            - integer
            - 'null'
          example: 1
        total:
          type: integer
          example: 1
    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
    EcomailhubCreditorProfileStatus:
      type: object
      required:
        - value
        - label
        - short_label
      properties:
        value:
          type: string
          enum:
            - active_member
            - pending_member
            - yn_prospect
            - consumer_prospect
          example: active_member
        label:
          type: string
          example: Active Member
        short_label:
          type: string
          example: AM
    EcomailhubCreditorProfileActions:
      type: object
      required:
        - can_view
        - can_edit
        - can_delete
      properties:
        can_view:
          type: boolean
          example: true
        can_edit:
          type: boolean
          example: false
        can_delete:
          type: boolean
          example: false
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: Unauthenticated.
    ValidationError:
      description: Request validation failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationErrorResponse'
          example:
            message: The given data was invalid.
            errors:
              email:
                - The email field is required.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum

````