Skip to content

Send Invoice

POST
/api/Invoices/{id}/send
curl --request POST \
--url https://example.com/api/Invoices/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/send \
--header 'Authorization: Bearer <token>'

Marks the invoice as Sent and dispatches it to the client by email.

id
required
string format: uuid

The invoice’s unique identifier.

Invoice sent.

Media type application/json
object
id
string format: uuid
merchantId
string format: uuid
invoiceNumber
string
nullable
memberId
string format: uuid
nullable
clientName
string
nullable
clientDetail
string
nullable
clientEmail
string
nullable
status
string
Allowed values: Draft Sent Paid Overdue Void
issueDate
string format: date-time
dueDate
string format: date-time
nullable
sentAt
string format: date-time
nullable
paidAt
string format: date-time
nullable
subtotal
number format: double
tax
number format: double
total
number format: double
currency
string
nullable
notes
string
nullable
lineItems
Array<object>
nullable
object
id
string format: uuid
description
string
nullable
quantity
number format: double
unitPrice
number format: double
total
number format: double
sortOrder
integer format: int32
createdAt
string format: date-time
updatedAt
string format: date-time
Example
{
"status": "Draft"
}

No invoice with the given ID exists.

Media type application/json
object
type
string
nullable
title
string
nullable
status
integer format: int32
nullable
detail
string
nullable
instance
string
nullable
key
additional properties
Example generated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example",
"instance": "example"
}