ChargesApi

interface ChargesApi

Functions

Link copied to clipboard
abstract suspend fun createCharge(postChargesRequest: PostChargesRequest): PostChargesResponse

Create/Define a Charge Define a new charge that can later be associated with loans and savings through their respective product definitions or directly on each account instance. Responses:

Link copied to clipboard
abstract suspend fun deleteCharge(chargeId: Long): DeleteChargesChargeIdResponse

Delete a Charge Deletes a Charge. Responses:

Link copied to clipboard
abstract suspend fun retrieveAllCharges(): List<GetChargesResponse>

Retrieve Charges Returns the list of defined charges. Example Requests: charges Responses:

Link copied to clipboard
abstract suspend fun retrieveCharge(chargeId: Long): GetChargesResponse

Retrieve a Charge Returns the details of a defined Charge. Example Requests: charges/1 Responses:

Link copied to clipboard

Retrieve Charge Template This is a convenience resource. It can be useful when building maintenance user interface screens for client applications. The template data returned consists of any or all of: Field Defaults Allowed description Lists Example Request: charges/template Responses:

Link copied to clipboard
abstract suspend fun updateCharge(chargeId: Long, putChargesChargeIdRequest: PutChargesChargeIdRequest): PutChargesChargeIdResponse

Update a Charge Updates the details of a Charge. Responses: