Skip to main content
PATCH
/
api
/
v1
/
quarterly-payments
/
:id
Update Quarterly Payment
curl --request PATCH \
  --url https://api.example.com/api/v1/quarterly-payments/:id \
  --header 'Content-Type: application/json' \
  --data '
{
  "paid_cents": 123,
  "paid_date": "<string>",
  "confirmation_number": "<string>",
  "notes": "<string>"
}
'

Path Parameters

id
integer
required
The payment ID.

Request Body

paid_cents
integer
Updated amount in cents.
paid_date
string
Updated payment date (YYYY-MM-DD).
confirmation_number
string
Updated confirmation number.
notes
string
Updated notes.

Response

Returns the updated payment object.