Skip to main content
PATCH
/
billing
/
invoices
/
v1
/
{id}
Update an invoice
curl --request PATCH \
  --url https://api.spacebring.com/billing/invoices/v1/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "invoice": {
    "dueDate": "2023-11-07T05:31:56Z",
    "dueDays": 1,
    "dueType": "date",
    "memo": "<string>"
  }
}
'
{
  "message": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

See our authentication documentation for how to authorize your requests

Headers

spacebring-network-id
string<uuid>

The id of the network. Required when using bearer token authentication

Path Parameters

id
string<uuid>
required

The id of an invoice.

Body

application/json
invoice
object
required

At least one property is required.

Response

No Content