> ## 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 notice response sender options

> Search eligible creditor profiles and active companies for reassigning a top-level pending-delivery notice response currently sent by a creditor profile.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /manage-notice-response/{noticeResponse}/sender-options
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-notice-response/{noticeResponse}/sender-options:
    get:
      tags:
        - Manage Notice Response
      summary: List manage notice response sender options
      description: >-
        Search eligible creditor profiles and active companies for reassigning a
        top-level pending-delivery notice response currently sent by a creditor
        profile.
      operationId: ecomailhubListManageNoticeResponseSenderOptions
      parameters:
        - name: noticeResponse
          in: path
          required: true
          schema:
            type: integer
          description: Notice response ID from the Manage Notice Response table.
        - name: search
          in: query
          required: false
          schema:
            type: string
            maxLength: 255
          description: >-
            Search by name, address, city, state, or zip. Blank search returns
            an empty list.
      responses:
        '200':
          description: Sender options returned.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ManageCreditorNoticeResponseSenderOptionsResponse
              example:
                data:
                  - id: 88
                    type: creditor_profile
                    name: Target Capital
                    address: 789 Unique Street
                    city: Chicago
                    state: IL
                    zip: '60601'
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          description: >-
            Notice response cannot be reassigned because it is not a
            pending-delivery creditor-profile sender row.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
              example:
                message: >-
                  Cannot change creditor profile unless notice response is
                  pending delivery.
        '422':
          $ref: '#/components/responses/ValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    ManageCreditorNoticeResponseSenderOptionsResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EcomailhubCreditorNoticeResponseSenderOption'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    EcomailhubCreditorNoticeResponseSenderOption:
      type: object
      required:
        - id
        - type
        - name
        - address
        - city
        - state
        - zip
      properties:
        id:
          type: integer
          example: 88
        type:
          type: string
          enum:
            - creditor_profile
            - company
          example: creditor_profile
        name:
          type: string
          example: Target Capital
        address:
          type:
            - string
            - 'null'
          example: 789 Unique Street
        city:
          type:
            - string
            - 'null'
          example: Chicago
        state:
          type:
            - string
            - 'null'
          example: IL
        zip:
          type:
            - string
            - 'null'
          example: '60601'
    ValidationErrorResponse:
      type: object
      required:
        - message
        - errors
      properties:
        message:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
  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.
    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

````