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

# Create outbound invoice

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



## OpenAPI

````yaml /specs/company.openapi.yaml post /developer/company/invoices
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:
    post:
      tags:
        - INVOICES
      summary: Create outbound invoice
      description: >-
        Creates an outbound invoice for the authenticated company. Requires
        permission `request_payments`.
      operationId: create_outbound_invoice
      requestBody:
        required: true
        description: Outbound invoice payload.
        content:
          application/json:
            schema:
              type: object
              title: CreateOutboundInvoiceRequest
            example:
              due_date: '2027-02-01T00:00:00.000Z'
              issued_at: '2027-01-01T00:00:00.000Z'
              invoice_number: INV-API-DOC-001
              template_id: 11111111-1111-4111-8111-000000000105
              deposit_account_id: 11111111-1111-4111-8111-000000000103
              recipient_id: 11111111-1111-4111-8111-000000000104
              amount: 100
              line_items:
                - quantity: 1
                  unit_price: 100
                  discount: 0
                  description: Integration test line item
              email: billing@incard.test
              reference: API documentation example
              notes: Created for API documentation examples.
      responses:
        '201':
          description: Created outbound invoice payment link.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    description: Whether the invoice was created successfully.
                    type: boolean
                  data:
                    type: object
                    properties:
                      payment_link:
                        description: Hosted payment link for the generated invoice.
                        type: string
                      reminder_schedule:
                        description: >-
                          Reminder schedule for the invoice, or null when none
                          is configured.
                        type: object
                    required:
                      - payment_link
                required:
                  - success
                title: CreateOutboundInvoiceResponse
              example:
                success: true
                data:
                  payment_link: >-
                    https://send.incard.com/invoices/<generated-invoice-public-id>
                  reminder_schedule: null
        '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.

````