> ## 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.

# Get Invoice Usage Export

> Get an invoice usage export



## OpenAPI

````yaml https://api.getmeasure.com/api/v1/docs/api_spec.json get /companies/{company_id}/invoices/{uuid}/usage_export
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}/usage_export:
    get:
      tags:
        - Invoices
      summary: Get Invoice Usage Export
      description: Get an invoice usage export
      operationId: Get_Invoice_Usage_Export
      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
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseInvoiceUsageExportRepresentation'
      deprecated: false
      security:
        - apiKey:
            - ''
components:
  schemas:
    ResponseInvoiceUsageExportRepresentation:
      properties:
        created_at:
          format: date-time
          type: string
        error_message:
          type:
            - 'null'
            - string
        file_id:
          type:
            - 'null'
            - string
        file_url:
          type:
            - 'null'
            - string
        id:
          type: string
        link_expires_at:
          format: date-time
          type:
            - 'null'
            - string
        processed_rows:
          format: int64
          type: integer
        status:
          type: string
        total_rows:
          format: int64
          type: integer
        updated_at:
          format: date-time
          type: string
      type: object
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````