POST /sale-invoices.json

POST /sale-invoices.json
application/json

Body Required

Responses

POST /sale-invoices.json
curl \
 -X POST http://api.example.com/v1/sale-invoices.json \
 -H "Content-Type: application/json" \
 -d '{"accountingIntegrationExternalId":true,"externalId":"string","finalized":false,"paid":0,"paymentStatus":"notPaid","quickbooksId":"string","reference":"string","saleId":42,"xeroId":"string"}'
Request example
{
  "accountingIntegrationExternalId": true,
  "externalId": "string",
  "finalized": false,
  "paid": 0,
  "paymentStatus": "notPaid",
  "quickbooksId": "string",
  "reference": "string",
  "saleId": 42,
  "xeroId": "string"
}
Response examples (200)
{
  "accountingIntegrationExternalId": true,
  "createdAt": "2023-05-04T09:42:00+00:00",
  "externalId": "string",
  "finalized": false,
  "id": 42,
  "paid": 0,
  "paymentStatus": "notPaid",
  "quickbooksId": "string",
  "reference": "string",
  "saleId": 42,
  "updatedAt": "2023-05-04T09:42:00+00:00",
  "xeroId": "string"
}