curl --request GET \
--url 'https://integration-api-cat2.{{environment}}.ext.{{realm}}.cia.enfuce.com/instalment/v1/account/{accountId}' \
--header 'Authorization: Basic <encoded-value>'{
"pagination": {
"page": 1,
"pages": 7,
"elements": 15,
"size": 1
},
"data": [
{
"id": "678543",
"instalmentOriginalId": "678544",
"accountId": "677654434532",
"creationDate": "2023-11-07T05:31:56Z",
"firstPayment": "2023-12-25",
"lastPayment": "2023-12-25",
"currency": "NOK",
"effectiveRate": 10.46,
"totalAmount": 1000,
"principalAmount": 1000,
"feeAmount": 10,
"interest": {
"interestRate": 9.9,
"effectiveRate": 10.46,
"interestAmount": 90,
"interestAmountBilled": 10
},
"paidAmount": 20,
"interestPaidAmount": 20.57,
"principalPaidAmount": 500,
"dueAmount": 100,
"overdueAmount": 200,
"writtenOffAmount": 1000,
"reversed": 1000,
"fullRepaymentAmount": 900,
"status": "INACTIVE",
"lastUpdated": "2023-11-07T05:31:56Z",
"transactionId": "8767653",
"description": "Instalment for product #4567",
"planOptions": {
"type": "BUY_NOW_PAY_LATER",
"shift": 2
}
}
]
}Basic authentication is used to authenticate towards Enfuce API. It is described in more detail in RFC 7617.
The account id to instalment plans
The audit user to log the request
Current page
x >= 0How many entries should be returned per page, default is 30. Cannot be more than 100.
1 < x < 100Filter for instalment status. Supported operations: eq, or. Example: (status eq WAITING or status eq OVERDUE) Note: You must URL-encode parentheses and spaces.
List of instalments for the given account
Show child attributes
Instalment id
"678543"
The id which links the original instalment and the new instalment resulted after revise process
"678544"
255"677654434532"
The creation date
The day of the first payment
The day of the last payment
The currency of the instalment
"NOK"
The effective rate. Please use interest.effectiveRate instead
10.46
The total amount of the instalment plan
1000
The principal amount
1000
The fee amount. Please use interest.interestAmount instead
10
Show child attributes
The interest rate
9.9
The effective rate. Please use interest.effectiveRate instead
10.46
The predicted interest
90
The interest amount billed
10
The paid amount. Please use interestPaidAmount instead
20
The interest paid amount
20.57
The principal paid amount
500
The due amount of the instalment plan
100
The overdue amount of the instalment plan
200
The written-off amount. Please use reversed instead
1000
The reversed amount
1000
The full repayment amount of the instalment plan
900
The status of the instalment plan
INACTIVE, WAITING, OPEN, PAID, PAID_PARTIALLY, OVERDUE, REVISED, CLOSED The last updated date
"8767653"
Optional text describing the instalment request
255"Instalment for product #4567"
The paymentPlan.type field should be BUY_NOW_PAY_LATER.
Was this page helpful?
curl --request GET \
--url 'https://integration-api-cat2.{{environment}}.ext.{{realm}}.cia.enfuce.com/instalment/v1/account/{accountId}' \
--header 'Authorization: Basic <encoded-value>'{
"pagination": {
"page": 1,
"pages": 7,
"elements": 15,
"size": 1
},
"data": [
{
"id": "678543",
"instalmentOriginalId": "678544",
"accountId": "677654434532",
"creationDate": "2023-11-07T05:31:56Z",
"firstPayment": "2023-12-25",
"lastPayment": "2023-12-25",
"currency": "NOK",
"effectiveRate": 10.46,
"totalAmount": 1000,
"principalAmount": 1000,
"feeAmount": 10,
"interest": {
"interestRate": 9.9,
"effectiveRate": 10.46,
"interestAmount": 90,
"interestAmountBilled": 10
},
"paidAmount": 20,
"interestPaidAmount": 20.57,
"principalPaidAmount": 500,
"dueAmount": 100,
"overdueAmount": 200,
"writtenOffAmount": 1000,
"reversed": 1000,
"fullRepaymentAmount": 900,
"status": "INACTIVE",
"lastUpdated": "2023-11-07T05:31:56Z",
"transactionId": "8767653",
"description": "Instalment for product #4567",
"planOptions": {
"type": "BUY_NOW_PAY_LATER",
"shift": 2
}
}
]
}