> ## 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 manage consumer

> Show the EcoMail Hub consumer profile summary, communication profile, and split notice-response counts for the selected grouped identity.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /manage-consumers/{consumer}
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-consumers/{consumer}:
    get:
      tags:
        - Manage Consumers
      summary: Show manage consumer
      description: >-
        Show the EcoMail Hub consumer profile summary, communication profile,
        and split notice-response counts for the selected grouped identity.
      operationId: ecomailhubShowManageConsumer
      parameters:
        - name: consumer
          in: path
          required: true
          schema:
            type: integer
          description: Representative consumer ID from the manage consumers list.
      responses:
        '200':
          description: Consumer detail summary returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManageConsumerDetailResponse'
              example:
                data:
                  id: 123
                  first_name: Donna
                  last_name: Weaver
                  consumer_name: Donna Weaver
                  dob: '1969-01-12'
                  dob_label: Jan 12, 1969
                  last4ssn: '3332'
                  address:
                    address: 123 Main Street
                    city: Los Angeles
                    state: CA
                    zip: '90001'
                    full: 123 Main Street, Los Angeles, CA, 90001
                  notice_responses:
                    pending_delivery_count: 1
                    delivered_response_count: 1
                    added_response_count: 1
                    returned_response_count: 2
                  communication_profile:
                    label: Both
                    email_permission: true
                    text_permission: true
                    is_communication_updated: true
                    recipient_email: donna.profile@example.com
                    recipient_phone: '8186017451'
                    recipient_phone_label: (818) 601-7451
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  schemas:
    ManageConsumerDetailResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/EcomailhubManageConsumerDetail'
    EcomailhubManageConsumerDetail:
      type: object
      required:
        - id
        - first_name
        - last_name
        - consumer_name
        - dob
        - dob_label
        - last4ssn
        - address
        - notice_responses
        - communication_profile
      properties:
        id:
          type: integer
          example: 123
        first_name:
          type:
            - string
            - 'null'
          example: Donna
        last_name:
          type:
            - string
            - 'null'
          example: Weaver
        consumer_name:
          type: string
          example: Donna Weaver
        dob:
          type:
            - string
            - 'null'
          format: date
          example: '1969-01-12'
        dob_label:
          type:
            - string
            - 'null'
          example: Jan 12, 1969
        last4ssn:
          type:
            - string
            - 'null'
          example: '3332'
        address:
          $ref: '#/components/schemas/EcomailhubManageConsumerAddress'
        notice_responses:
          $ref: '#/components/schemas/EcomailhubManageConsumerNoticeResponseCounts'
        communication_profile:
          $ref: '#/components/schemas/EcomailhubDetailCommunicationProfile'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    EcomailhubManageConsumerAddress:
      type: object
      required:
        - address
        - city
        - state
        - zip
        - full
      properties:
        address:
          type:
            - string
            - 'null'
          example: 123 Main Street
        city:
          type:
            - string
            - 'null'
          example: Los Angeles
        state:
          type:
            - string
            - 'null'
          example: CA
        zip:
          type:
            - string
            - 'null'
          example: '90001'
        full:
          type: string
          example: 123 Main Street, Los Angeles, CA, 90001
    EcomailhubManageConsumerNoticeResponseCounts:
      type: object
      required:
        - pending_delivery_count
        - delivered_response_count
        - added_response_count
        - returned_response_count
      properties:
        pending_delivery_count:
          type: integer
          example: 1
        delivered_response_count:
          type: integer
          example: 1
        added_response_count:
          type: integer
          example: 1
        returned_response_count:
          type: integer
          example: 2
    EcomailhubDetailCommunicationProfile:
      allOf:
        - $ref: '#/components/schemas/EcomailhubCommunicationProfile'
        - type: object
          required:
            - is_communication_updated
            - recipient_email
            - recipient_phone
            - recipient_phone_label
          properties:
            is_communication_updated:
              type: boolean
            recipient_email:
              type:
                - string
                - 'null'
              format: email
              example: donna.profile@example.com
            recipient_phone:
              type:
                - string
                - 'null'
              example: '8186017451'
            recipient_phone_label:
              type:
                - string
                - 'null'
              example: (818) 601-7451
    EcomailhubCommunicationProfile:
      type: object
      required:
        - label
        - email_permission
        - text_permission
      properties:
        label:
          type:
            - string
            - 'null'
          enum:
            - Both
            - Email
            - Text
            - null
        email_permission:
          type: boolean
        text_permission:
          type: boolean
  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

````