> ## 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 communication template

> Show one communication template owned by the authenticated EcoMail Hub user.



## OpenAPI

````yaml /api/ecomailhub.openapi.yaml get /communications/templates/{ecoMailHubTemplate}
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:
  /communications/templates/{ecoMailHubTemplate}:
    get:
      tags:
        - Communications
      summary: Show communication template
      description: >-
        Show one communication template owned by the authenticated EcoMail Hub
        user.
      operationId: ecomailhubShowCommunicationTemplate
      parameters:
        - name: ecoMailHubTemplate
          in: path
          required: true
          schema:
            type: integer
          description: Communication template ID.
      responses:
        '200':
          description: Communication template returned.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/EcomailhubCommunicationTemplateDataResponse
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  schemas:
    EcomailhubCommunicationTemplateDataResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/EcomailhubCommunicationTemplate'
    EcomailhubCommunicationTemplate:
      type: object
      required:
        - id
        - name
        - subject
        - content
        - created_at
        - updated_at
      properties:
        id:
          type: integer
          example: 15
        name:
          type: string
          example: Welcome Creditor
        subject:
          type:
            - string
            - 'null'
          example: Hello [Company Name]
        content:
          type: string
          example: <p>Welcome [Company Name]</p>
        created_at:
          type:
            - string
            - 'null'
          format: date-time
          example: '2026-07-05T12:00:00.000000Z'
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
          example: '2026-07-05T12:05:00.000000Z'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          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.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum

````