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

# Show creditor profile detail

> Show the EcoMail Hub creditor profile summary card for a creditor-profile row.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /manage-creditor-profiles/{creditorProfile}
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/{creditorProfile}:
    get:
      tags:
        - Manage Creditors
      summary: Show creditor profile detail
      description: >-
        Show the EcoMail Hub creditor profile summary card for a
        creditor-profile row.
      operationId: ecomailhubShowManageCreditorProfile
      parameters:
        - name: creditorProfile
          in: path
          required: true
          schema:
            type: integer
          description: Creditor profile ID from the manage creditor profiles list.
      responses:
        '200':
          description: Creditor profile summary returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManageCreditorProfileDetailResponse'
              example:
                data:
                  id: 22
                  row_type: creditor_profile
                  company_name: Sadguru Shopping Center
                  company_url: https://sadguru.example.test
                  profile_status:
                    value: active_member
                    label: Active Member
                    short_label: AM
                  contacts:
                    email: noreply@younegotiate.com
                    phone: '9005090050'
                    phone_label: (900) 509-0050
                  address:
                    line_1: 1600 Amphitheatre Pkwy
                    line_2: Suite 100
                    city: Mountain View
                    state: CA
                    state_label: California
                    zip: '94043'
                    full: >-
                      1600 Amphitheatre Pkwy, Suite 100, Mountain View,
                      California, 94043
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  schemas:
    ManageCreditorProfileDetailResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/EcomailhubCreditorProfileDetail'
    EcomailhubCreditorProfileDetail:
      type: object
      required:
        - id
        - row_type
        - company_name
        - company_url
        - profile_status
        - contacts
        - address
      properties:
        id:
          type: integer
          example: 22
        row_type:
          type: string
          enum:
            - creditor_profile
            - company
          example: creditor_profile
        company_name:
          type:
            - string
            - 'null'
          example: Sadguru Shopping Center
        company_url:
          type:
            - string
            - 'null'
          example: https://sadguru.example.test
        profile_status:
          $ref: '#/components/schemas/EcomailhubCreditorProfileStatus'
        contacts:
          $ref: '#/components/schemas/EcomailhubCreditorProfileContacts'
        address:
          $ref: '#/components/schemas/EcomailhubCreditorProfileAddress'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          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
    EcomailhubCreditorProfileContacts:
      type: object
      required:
        - email
        - phone
        - phone_label
      properties:
        email:
          type:
            - string
            - 'null'
          format: email
          example: noreply@younegotiate.com
        phone:
          type:
            - string
            - 'null'
          example: '9005090050'
        phone_label:
          type:
            - string
            - 'null'
          example: (900) 509-0050
    EcomailhubCreditorProfileAddress:
      type: object
      required:
        - line_1
        - line_2
        - city
        - state
        - state_label
        - zip
        - full
      properties:
        line_1:
          type:
            - string
            - 'null'
          example: 1600 Amphitheatre Pkwy
        line_2:
          type:
            - string
            - 'null'
          example: Suite 100
        city:
          type:
            - string
            - 'null'
          example: Mountain View
        state:
          type:
            - string
            - 'null'
          example: CA
        state_label:
          type:
            - string
            - 'null'
          example: California
        zip:
          type:
            - string
            - 'null'
          example: '94043'
        full:
          type:
            - string
            - 'null'
          example: 1600 Amphitheatre Pkwy, Suite 100, Mountain View, California, 94043
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: Unauthenticated.
    NotFound:
      description: Requested resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: Not Found.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum

````