Untitled

mail@pastecode.io avatar
unknown
javascript
a year ago
1.1 kB
2
Indexable

const request = {
    transactionId: "9dbfd8b4-45ab-4eff-8a78-b91f0c2f043a", // String, UUID
    transactionCreated: 1685690875, // INT number, UNIX representation of date 
    accountNumber: "1424141041", // String, Target account that belongs to SDB (in case of more than 1)
    amount: 100000, // INT number, Amount (Decimals included in this number,example: 10.60 EUR will be represented as 1060 - amount*100)
    currency: "EUR", // String, ISO Represented currency
    fundOrigin: {
        accountNumber: "EUR126883085414", // String
        typeOfAccount: "business", // String, There is two types 'business' and 'personal'
        owner: {
            name: "State Digital Bank", // String, fullname of organization/person that funds belongs to
            address: {
                city: "Tokyo", // String
                country: "Japan", // String
                line1: "3-12-13 Komazawa Setagaya-Ku", // String
                line2: "", // String, most of times empty
                postCode: "154-0012" // String
            }
        }
    },
}