Get a list of fixed fees
query Parameters
startDate
string · dateOnly return fixed fees that are dated after or including this date
endDate
string · dateOnly return fixed fees that are dated before or including this date
userId
string · uuidOnly return fixed fees that are associated with this user
matterId
string · uuidOnly return fixed fees that are associated with this matter
clientId
string · uuidOnly return fixed fees that are associated with this client
billed
booleanFilter based on whether fixed fee was billed or not
select
stringUsed 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
sort
stringSorting parameters for fixed fees. Supported sort fields: date, amount, description Example: "-date,amount" sorts by date descending, then amount ascending
limit
integer · int32Maximum number of items to return (default: 1000)
offset
integer · int32Number of items to offset (default: 0)
modifiedSince
string · date-timeOnly return results that have the ModifiedDate property after this date and time (optional)
Responses
OK
data
array | nullThe list of items returned by the API
pagination
objectPagination information
Create a new fixed fee
Request Body
matterId
string · uuid · requiredThe matter is required.
date
string · date · requiredThe date of the fixed fee. Required
description
string · minLength: 1 · requiredThe description of the fixed fee. Required
amount
number · double · requiredThe amount of the fixed fee (Required)
userId
string | null · uuidThe user associated with the fixed fee. If ommitted, the fixed fee with associated with the firm
activityCode
string | nullLEDES activity code
taskCode
string | 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
id
string · uuid · requiredThe id of the fixed fee to update
Request Body
date
string | null · dateThe date of the fixed fee.
matterId
string | null · uuidThe matter that the fixed fee is associated with.
userId
string | null · uuidThe user that the fixed fee is associated with.
description
string | nullThe description of the fixed fee.
amount
number | null · doubleThe amount of the fixed fee
activityCode
string | nullLEDES activity code
taskCode
string | nullLEDES task code
Responses
OK