v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Invoicing - Setup

Save invoicing setup

Save invoicing setup configuration for the authenticated user

post/v6/invoicing/setup

Request body

brandColorstring

The primary brand color as a six digit hexadecimal value

defaultNotestring

Default invoice message, appended at the end of the invoice

reimbursableMarkUpPercentstring

Default expense reimbursable mark-up percentage

setupCompleteboolean

Whether the user has completed all invoice setup steps

Example request

{
  "brandColor": "4A90D9",
  "defaultNote": "Thank you for your business!",
  "defaultTerm": {
    "type": "NET_30",
    "dueDate": "2025-07-26"
  },
  "defaultReminderRecurrence": {
    "frequency": "WEEKLY",
    "interval": 1
  },
  "reimbursableMarkUpPercent": "15.0",
  "setupComplete": true
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": {
    "brandColor": "4A90D9",
    "defaultNote": "Thank you for your business!",
    "defaultTerm": {
      "type": "NET_30",
      "dueDate": "2025-07-26"
    },
    "defaultReminderRecurrence": {
      "frequency": "WEEKLY",
      "interval": 1
    },
    "reimbursableMarkUpPercent": "15.0",
    "setupComplete": true
  }
}