Get a list of fixed fees
query Parameters
startDatestring · dateOnly return fixed fees that are dated after or including this date
endDatestring · dateOnly return fixed fees that are dated before or including this date
userIdstring · uuidOnly return fixed fees that are associated with this user
matterIdstring · uuidOnly return fixed fees that are associated with this matter
clientIdstring · uuidOnly return fixed fees that are associated with this client
billedbooleanFilter based on whether fixed fee was billed or not
selectstringUsed to include additional detail in the response with a comma separated list of object identifiers.. Fields can be prefixed with a minus sign to exclude them. Supported fields: client, matter, user, meta
sortstringSorting parameters for fixed fees. Supported sort fields: date, amount, description Example: "-date,amount" sorts by date descending, then amount ascending
limitinteger · int32Maximum number of items to return (default: 1000)
offsetinteger · int32Number of items to offset (default: 0)
modifiedSincestring · date-timeOnly return results that have the ModifiedDate property after this date and time (optional)
Responses
OK
dataarray | nullThe list of items returned by the API
paginationobjectPagination information
Create a new fixed fee
Request Body
matterIdstring · uuid · requiredThe matter is required.
datestring · date · requiredThe date of the fixed fee. Required
descriptionstring · minLength: 1 · requiredThe description of the fixed fee. Required
amountnumber · double · requiredThe amount of the fixed fee (Required)
userIdstring | null · uuidThe user associated with the fixed fee. If ommitted, the fixed fee with associated with the firm
activityCodestring | nullLEDES activity code
taskCodestring | nullLEDES task code
Responses
OK
Update a fixed fee
Updating a fixed fee is only possible if it has not been billed (added to an invoice). The update is "sparse", where only the fields that are provided in the request will be updated.
path Parameters
idstring · uuid · requiredThe id of the fixed fee to update
Request Body
datestring | null · dateThe date of the fixed fee.
matterIdstring | null · uuidThe matter that the fixed fee is associated with.
userIdstring | null · uuidThe user that the fixed fee is associated with.
descriptionstring | nullThe description of the fixed fee.
amountnumber | null · doubleThe amount of the fixed fee
activityCodestring | nullLEDES activity code
taskCodestring | nullLEDES task code
Responses
OK