GET
/
v1
/
transaction
/
{transactionId}
{
  "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": {
    "shift": 2,
    "type": "BUY_NOW_PAY_LATER"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication is used to authenticate towards Enfuce API. It is described in more detail in RFC 7617.

Path Parameters

transactionId
string<biginteger>
required

The transaction Id

Example:

"8767653"

Query Parameters

auditUser
string
required

The audit user to log the request

Response

Instalment

id
string

Instalment id

Example:

"678543"

instalmentOriginalId
string

The id which links the original instalment and the new instalment resulted after revise process

Example:

"678544"

accountId
string
Maximum length: 255
Example:

"677654434532"

creationDate
string<date-time>

The creation date

firstPayment
string<date>

The day of the first payment

lastPayment
string<date>

The day of the last payment

currency
string

The currency of the instalment

Example:

"NOK"

effectiveRate
number

The effective rate. Please use interest.effectiveRate instead

Example:

10.46

totalAmount
number

The total amount of the instalment plan

Example:

1000

principalAmount
number

The principal amount

Example:

1000

feeAmount
number
deprecated

The fee amount. Please use interest.interestAmount instead

Example:

10

interest
object
paidAmount
number
deprecated

The paid amount. Please use interestPaidAmount instead

Example:

20

interestPaidAmount
number

The interest paid amount

Example:

20.57

principalPaidAmount
number

The principal paid amount

Example:

500

dueAmount
number

The due amount of the instalment plan

Example:

100

overdueAmount
number

The overdue amount of the instalment plan

Example:

200

writtenOffAmount
number
deprecated

The written-off amount. Please use reversed instead

Example:

1000

reversed
number

The reversed amount

Example:

1000

fullRepaymentAmount
number

The full repayment amount of the instalment plan

Example:

900

status
enum<string>

The status of the instalment plan

Available options:
INACTIVE,
WAITING,
OPEN,
PAID,
PAID_PARTIALLY,
OVERDUE,
REVISED,
CLOSED
lastUpdated
string<date-time>

The last updated date

transactionId
string<biginteger>
Example:

"8767653"

description
string

Optional text describing the instalment request

Maximum length: 255
Example:

"Instalment for product #4567"

planOptions
object

The paymentPlan.type field should be BUY_NOW_PAY_LATER.