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

# Delete outbound invoice

> Deletes an outbound invoice for the authenticated company. Requires permission `request_payments`.



## OpenAPI

````yaml /specs/company.openapi.yaml delete /developer/company/invoices/{id}
openapi: 3.1.0
info:
  title: Incard Developer API
  version: 0.1.0
  description: OpenAPI definition for the Incard Developer API.
servers:
  - url: https://api.incard.com
    description: Developer Gateway (production)
  - url: https://api-nonprod.incard.com
    description: Developer Gateway (non-production)
security:
  - BearerAuth: []
tags:
  - name: INVOICES
  - name: webhooks
paths:
  /developer/company/invoices/{id}:
    delete:
      tags:
        - INVOICES
      summary: Delete outbound invoice
      description: >-
        Deletes an outbound invoice for the authenticated company. Requires
        permission `request_payments`.
      operationId: delete_outbound_invoice
      parameters:
        - name: id
          in: path
          required: true
          description: Outbound invoice UUID.
          schema:
            type: string
      responses:
        '204':
          description: Invoice deleted. No response body.
        '401':
          description: Unauthorized
        '403':
          description: Forbidden — insufficient permission for this user
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: access_token
      description: Short-lived access token. Obtain with your api_key.

````