Skip to main content
PATCH
/
billing
/
invoices
/
v1
/
items
/
{id}
Update an invoice item
curl --request PATCH \
  --url https://api.spacebring.com/billing/invoices/v1/items/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "invoiceItem": {
    "product": {
      "title": "<string>"
    },
    "quantity": 2,
    "unitAmount": 1
  }
}
'
{
  "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 item.

Body

application/json
invoiceItem
object
required

At least one property is required.

Response

No Content