# Forward an existing email

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /unibox/emails/forward:
    post:
      summary: Forward an existing email
      deprecated: false
      description: >-
        Forwards an email to a new recipient. The body will appear above the
        original message content.
      operationId: Unibox_unibox/forward-an-existing-email
      tags:
        - Unibox
        - Unibox
      parameters:
        - name: workspace_id
          in: query
          description: The ID of the workspace where this action is performed.
          required: true
          schema:
            type: string
            description: The ID of the workspace where this action is performed.
            default: ''
            examples:
              - 65099a0dd96fae8ab61130c0
        - name: x-api-key
          in: header
          description: |
            Your PlusVibe.ai account's API Key
          required: false
          example: ''
          schema:
            type: string
            description: |
              Your PlusVibe.ai account's API Key
            default: ''
            examples:
              - your-api-key
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                from:
                  type: string
                  description: Sender's email address
                  format: email
                  examples:
                    - sender@example.com
                to:
                  type: string
                  description: Recipient's email address
                  format: email
                  examples:
                    - recipient@example.com
                reply_to_id:
                  type: string
                  description: >-
                    ID of the email being forwarded (You can get this from "Get
                    emails" endpoint)
                  examples:
                    - 67b0c97cb9557371572de9eb
                cc:
                  type: string
                  description: CC recipients (comma-separated if multiple)
                  format: email
                  examples:
                    - cc@example.com
                bcc:
                  type: string
                  description: BCC recipients (comma-separated if multiple)
                  format: email
                  examples:
                    - bcc@example.com
                body:
                  type: string
                  description: Text to prepend before original email
                  examples:
                    - Here's the forwarded message with some additional info.
              required:
                - from
                - to
                - reply_to_id
                - body
              x-apidog-orders:
                - from
                - to
                - reply_to_id
                - cc
                - bcc
                - body
      responses:
        '200':
          description: Email forwarded successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: ''
                    examples:
                      - success
                  id:
                    type: string
                    description: The Id of the forwarded email message
                    examples:
                      - 67f60fbc3bcee49f29c92bb9
                x-apidog-orders:
                  - status
                  - id
          headers: {}
          x-apidog-name: OK
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: ''
                    examples:
                      - Validation error
                  error:
                    type: string
                    description: ''
                    examples:
                      - Validation error
                x-apidog-orders:
                  - message
                  - error
          headers: {}
          x-apidog-name: Bad Request
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Server Error
      security:
        - ApiKeyAuth: []
          x-apidog:
            schemeGroups:
              - id: uS5KiuC4wfZHK42AzOfA_
                schemeIds:
                  - ApiKeyAuth
            required: true
            use:
              id: uS5KiuC4wfZHK42AzOfA_
            scopes:
              uS5KiuC4wfZHK42AzOfA_:
                ApiKeyAuth: []
      x-apidog-folder: Unibox
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/929054/apis/api-17238028-run
components:
  schemas: {}
  securitySchemes:
    ApiKeyAuth:
      type: apikey
      in: header
      name: x-api-key
      description: |
        API key issued in the PlusVibe dashboard. The server reads it
        from the `x-api-key` header and injects it into the request as
        the `api_key` query parameter, which is why you will see
        `api_key` referenced in validation errors.
    apiKey:
      type: apikey
      in: body
      name: api_key
      description: API key passed in request body
servers:
  - url: https://api.plusvibe.ai/api/v1
    description: Prod Env
security:
  - ApiKeyAuth: []
    x-apidog:
      schemeGroups:
        - id: uS5KiuC4wfZHK42AzOfA_
          schemeIds:
            - ApiKeyAuth
      required: true
      use:
        id: uS5KiuC4wfZHK42AzOfA_
      scopes:
        uS5KiuC4wfZHK42AzOfA_:
          ApiKeyAuth: []

```
