Charges
Charges#index
Retrieves all invoice charges
Response
Returns a 200 OK with an array of invoice charges:
Charges#create
Creates a new invoice charge. Keep in mind to send charge data inside a charge root key.
You should pass a JSON with the following parameters:
amount decimal, greater than or equal to 0,
required
status 'service' or 'expense' or 'fee',
required
date date,
required
description string
matter_id integer
Response
Returns a 201 created.
Charges#update
Updates an existing charge.
You should pass a JSON with the following parameters:
amount decimal, greater than or equal to 0
status 'service' or 'expense' or 'fee'
date date
description string
matter_id integer
Response:
Returns 200 OK
Charges#destroy
Destroys an existing charge
Response:
Returns 200 OK
Last updated