Skip to main content
POST
/
v2
/
invoices
/
bulk
/
promised-to-pay-date
Bulk Update Promised To Pay Date Endpoint
curl --request POST \
  --url https://api.example.com/v2/invoices/bulk/promised-to-pay-date \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "invoice_ids": [
    "<string>"
  ],
  "promised_to_pay_date": "2023-12-25"
}
'
{
  "updated_count": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.api.stuut.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request schema for bulk updating invoice promised-to-pay dates.

invoice_ids
string[]
required
Minimum array length: 1
promised_to_pay_date
string<date> | null
required

New promised-to-pay date, or null to clear

Response

Successful Response

Response schema for bulk promised-to-pay date update.

updated_count
integer
required
Required range: x >= 0