Skip to main content

Disbursementdetails

The the disbursement details it holds the information related to the disbursement details as disbursement date, first repayment date, disbursement fees.

disbursementDatestring<date-time>

The activation date, the date when the disbursement actually took place.

Example: 2016-09-06T13:37:50+03:00
encodedKeystring

The encoded key of the disbursement details, auto generated, unique

expectedDisbursementDatestring<date-time>

The date of the expected disbursement.Stored as Organization Time.

Example: 2016-09-06T13:37:50+03:00
fees object[]

List of fees that should be applied at the disbursement time.

  • Array [
  • amountnumber

    The amount of the custom fee.

    encodedKeystring

    The encoded key of the custom predefined fee, auto generated, unique.

    percentagenumber

    The percentage of the custom fee.

    predefinedFeeEncodedKeystring

    The encoded key of the predefined fee

  • ]
  • firstRepaymentDatestring<date-time>

    The date of the expected first repayment. Stored as Organization Time.

    Example: 2016-09-06T13:37:50+03:00
    transactionDetails object

    Represents the loan transaction details.

    encodedKeystring

    The encoded key of the entity, generated, globally unique

    internalTransferboolean

    Whether the transaction was transferred between loans or deposit accounts

    targetDepositAccountKeystring

    In case of a transaction to a deposit account this represent the deposit account key to which the transaction was made.

    transactionChannelIdstring

    The ID of the transaction channel associated with the transaction details.

    transactionChannelKeystring

    The encoded key of the transaction channel associated with the transaction details.

    Disbursementdetails
    {
    "disbursementDate": "2016-09-06T13:37:50+03:00",
    "encodedKey": "string",
    "expectedDisbursementDate": "2016-09-06T13:37:50+03:00",
    "fees": [
    {
    "amount": 0,
    "encodedKey": "string",
    "percentage": 0,
    "predefinedFeeEncodedKey": "string"
    }
    ],
    "firstRepaymentDate": "2016-09-06T13:37:50+03:00",
    "transactionDetails": {
    "encodedKey": "string",
    "internalTransfer": true,
    "targetDepositAccountKey": "string",
    "transactionChannelId": "string",
    "transactionChannelKey": "string"
    }
    }