curl --request PATCH \
--url https://revstack.dev/v1/invoices/{id}/lines/{lineId} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"periodStart": "2023-11-07T05:31:56Z",
"periodEnd": "2023-11-07T05:31:56Z",
"amount": 123,
"quantity": 2
}
'nullUpdates an existing line item on a draft invoice.
curl --request PATCH \
--url https://revstack.dev/v1/invoices/{id}/lines/{lineId} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"periodStart": "2023-11-07T05:31:56Z",
"periodEnd": "2023-11-07T05:31:56Z",
"amount": 123,
"quantity": 2
}
'nullLine item updated
The response is of type unknown.