---
title: "Creates an Invoice"
method: POST
path: "/invoices"
tags: ["Invoice"]
---

# Creates an Invoice

`POST /invoices`

Required permission: Invoices - Create

## Request body

- object
  - `id` integer
  - `balance_due` integer
  - `customer_id` integer, required
  - `name` string
  - `number` string, required
  - `date` string, date-time, required
  - `customer_business_then_name` string
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `due_date` string, date
  - `subtotal` string
  - `total` string
  - `tax` string
  - `verified_paid` boolean
  - `tech_marked_paid` boolean
  - `ticket_id` integer
  - `pdf_url` string
  - `is_paid` boolean
  - `location_id` integer
  - `po_number` string
  - `contact_id` integer
  - `note` string
  - `hardwarecost` number
  - `line_items` object[]
    - `item` string
    - `name` string
    - `product_id` integer
    - `quantity` number
    - `cost` number
    - `price` number
    - `discount_percent` integer
    - `taxable` boolean
    - `upc_code` string
    - `tax_note` string
    - `wholesale` number
    - `invoice_bundle_id` integer
    - `tax_rate_id` integer
    - `user_id` integer
    - `position` integer

## Response `200`

Invoice created

## Other responses

- `422` — Invalid request

---

[API](https://skmtc.dev/syncromsp/apis/syncro.md) · [All operations](https://skmtc.dev/syncromsp/apis/syncro/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/syncromsp/syncro/revisions/dfc1c332d2c2/schema)
