Repayment instrument call-back

To get notified on successful payment instrument collection, expose an endpoints collect the following variables via call back:

Field description

#
Field
Description
Type

1

event

The name of the event

string

2

tokenizationType

Tokenization type

string

3

firstName

Customer First Name

string

4

lastName

Customer Last Name

string

5

loanAmount

the tokenized amount

string

6

loanRef

Loan Identifier

number

Repayment instrument call-back :

{
 "event": "mida.loan.tokenization",
 "data":{
    "tokenizationType": "direct_debit",
    "firstName": "Samuel",
    "lastName": "Peters",
    "loanRef": "42618729-c776-4a9f-8839-64ab82b3d6a5",
    "loanAmount": 300000,
 }
}

Last updated