> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmeasure.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Email for Invoice

> Send Email for Invoice by UUID



## OpenAPI

````yaml https://api.getmeasure.com/api/v1/docs/api_spec.json post /companies/{company_id}/invoices/{uuid}/send_email
openapi: 3.1.0
info:
  title: Measure API
  description: APIs to communicate with Measure
  version: 1.0.0
servers:
  - url: https://api.getmeasure.com/api/v1
security: []
paths:
  /companies/{company_id}/invoices/{uuid}/send_email:
    post:
      tags:
        - Invoices
      summary: Send Email for Invoice
      description: Send Email for Invoice by UUID
      operationId: Send_Email_for_Invoice
      parameters:
        - name: company_id
          in: path
          description: 'The company ID with the prefix ''cmp_''. '
          required: true
          schema:
            description: 'The company ID with the prefix ''cmp_''. '
            type: string
        - name: uuid
          in: path
          description: The resource UUID
          required: true
          schema:
            description: The resource UUID
            type: string
        - name: Idempotency-Key
          in: header
          description: >-
            The idempotency key that will be used to ensure the request is only
            performed once
          schema:
            description: >-
              The idempotency key that will be used to ensure the request is
              only performed once
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestEmailInvoiceRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseBaseSuccessResponse'
      deprecated: false
      security:
        - apiKey:
            - ''
components:
  schemas:
    RequestEmailInvoiceRequest:
      properties:
        attach_pdf:
          type: boolean
        cc_emails:
          examples:
            - - harry.potter@hogwarts.com
          format: email
          items:
            type: string
          type:
            - array
            - 'null'
        emails:
          examples:
            - - harry.potter@hogwarts.com
          format: email
          items:
            type: string
          type:
            - array
            - 'null'
        message:
          maximum: 10000
          type: string
      type: object
    ResponseBaseSuccessResponse:
      properties:
        success:
          type: boolean
      type: object
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````