GET /settlements
|
Users, Drivers, Carriers
|
Retrieves a list of unpaid settlement records for the given parameters. |
GET /settlements/history
|
Users, Drivers, Carriers
|
Retrieves a list of paid settlement records for the given parameters. |
GET /settlements/history/search
|
Users
|
Searches the database for settlement history matching the given request parameters. |
GET /settlements/history/{id}
|
Users
|
Retrieves the settlement history record for the given ID. |
GET /settlements/new
|
Users
|
Creates a settlement object with all configured defaults set. This doesn't create a record
in the database. Instead, callers of this method can edit the returned object and then
pass it back to the create method to actually insert the record in the database. |
GET /settlements/payrollHistory
|
Users, Drivers, Carriers
|
Retrieves a list of payroll history records for the given parameters. |
GET /settlements/payrollHistory/{id}
|
Users
|
Retrieves the payroll history record for the given ID. |
GET /settlements/reports/paidSettlements
|
Users, Drivers, Carriers
|
Runs the settlement summary report for the given driver and check date range. |
GET /settlements/search
|
Users
|
Searches the database for settlements matching the given request parameters. |
GET /settlements/{id}
|
Users
|
Returns the requested unpaid settlement record. |
POST /settlements/reverseTransfer/{reverseTransferBy}/{reverseTransferIds}
|
Users
|
Reverses a settlement for the provided transfer id values |
POST /settlements/transfer/{transferBy}/{transferIds}
|
Users
|
Transfers the provided transfer id values to settlement. |
PUT /settlements/create
|
Users
|
Creates a new settlement record for the given data. |