# Show Bee Email Template

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/messages/bee_email_templates/{id}:
    get:
      summary: Show Bee Email Template
      deprecated: false
      description: ''
      tags:
        - API Reference/Messaging API/Templates/Bee Templates
      parameters:
        - name: id
          in: path
          description: ''
          required: true
          example: '2000'
          schema:
            type: string
        - name: Content-Type
          in: header
          description: '[Details](doc-341635)'
          required: true
          example: application/json
          schema:
            type: string
            default: application/json
            const: application/json
        - name: X-User-Agent
          in: header
          description: Arbitrary identifier of your client. [Details](doc-341635)
          required: true
          example: '{{X_USER_AGENT}}'
          schema:
            type: string
            default: '{{X_USER_AGENT}}'
        - name: X-Product-Name
          in: header
          description: API Product for API context. [Details](doc-341635)
          required: true
          example: '{{PRODUCT_NAME}}'
          schema:
            type: string
            default: '{{PRODUCT_NAME}}'
        - name: X-Loyalty-Club-Slug
          in: header
          description: LoyaltyClub for API context. [Details](doc-342138)
          required: false
          example: '{{LOYALTY_CLUB_SLUG}}'
          schema:
            type: string
            default: '{{LOYALTY_CLUB_SLUG}}'
        - name: X-Customer
          in: header
          description: Customer for API context.  [Details](doc-342139)
          required: false
          example: '{{CUSTOMER_ID}}'
          schema:
            type: string
            default: '{{CUSTOMER_ID}}'
        - name: Authorization
          in: header
          description: '[Member](doc-342129) or [User](doc-342130) Authorization.'
          required: false
          example: Bearer {{_OAUTH_TOKEN}}
          schema:
            type: string
            default: Bearer {{_OAUTH_TOKEN}}
        - name: X-Client-Authorization
          in: header
          description: '[Token](doc-342128) Authorization.'
          example: '{{API_TOKEN}}'
          schema:
            type: string
            default: '{{API_TOKEN}}'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  beefree_template:
                    properties:
                      id:
                        type: integer
                      bee_id:
                        type: string
                      categories:
                        type: array
                        items:
                          type: string
                      collections:
                        type: array
                        items:
                          type: string
                      description:
                        type: string
                      json_data:
                        type: object
                        properties: {}
                        x-apidog-orders: []
                        additionalProperties: true
                      tags:
                        type: array
                        items:
                          type: string
                      template_type:
                        type: string
                      thumbnail_large:
                        type: string
                      thumbnail:
                        type: string
                      title:
                        type: string
                      published_at:
                        type: string
                      created_at:
                        type: string
                    required:
                      - id
                      - bee_id
                      - categories
                      - collections
                      - description
                      - json_data
                      - tags
                      - template_type
                      - thumbnail_large
                      - thumbnail
                      - title
                      - published_at
                      - created_at
                    x-apidog-orders:
                      - id
                      - bee_id
                      - categories
                      - collections
                      - description
                      - json_data
                      - tags
                      - template_type
                      - thumbnail_large
                      - thumbnail
                      - title
                      - published_at
                      - created_at
                    $ref: '#/components/schemas/BeeFree%20Template'
                required:
                  - beefree_template
                x-apidog-orders:
                  - beefree_template
                x-apidog-ignore-properties: []
          headers: {}
          x-apidog-name: Success
        '404':
          description: ''
          content:
            application/json:
              schema:
                title: ''
                type: object
                properties:
                  error:
                    type: string
                    examples:
                      - Record not found
                x-apidog-orders:
                  - error
                required:
                  - error
                x-apidog-ignore-properties: []
          headers: {}
          x-apidog-name: Record Not Found
      security: []
      x-apidog-folder: API Reference/Messaging API/Templates/Bee Templates
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/346351/apis/api-3574443-run
components:
  schemas:
    BeeFree Template:
      type: object
      properties:
        id:
          type: integer
        bee_id:
          type: string
        categories:
          type: array
          items:
            type: string
        collections:
          type: array
          items:
            type: string
        description:
          type: string
        json_data:
          type: object
          properties: {}
          x-apidog-orders: []
          additionalProperties: true
          x-apidog-ignore-properties: []
        tags:
          type: array
          items:
            type: string
        template_type:
          type: string
        thumbnail_large:
          type: string
        thumbnail:
          type: string
        title:
          type: string
        published_at:
          type: string
        created_at:
          type: string
      required:
        - id
        - bee_id
        - categories
        - collections
        - description
        - json_data
        - tags
        - template_type
        - thumbnail_large
        - thumbnail
        - title
        - published_at
        - created_at
      x-apidog-orders:
        - id
        - bee_id
        - categories
        - collections
        - description
        - json_data
        - tags
        - template_type
        - thumbnail_large
        - thumbnail
        - title
        - published_at
        - created_at
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.mpc.dev.placewise.com
    description: Staging
security: []

```