Select account information
# Flow
Note: Make sure to load the user_form_url
in a redirect or popup on
mobile, loading user_form_url
in an iframe on mobile will cause
issues.
# POST /v4/accounts
# REQUEST
{
// required
"country_code": "SE",
"ref": "merchant-transaction-ref",
"site_display_name": "Best Website.com",
"site": "example.com",
"success_url": "https://example.com/return_path/transaction_identifier",
"close_url": "https://example.com/return_path/transaction_identifier",
"failure_url": "https://example.com/return_path/transaction_identifier",
// optional
"notification_url": "https://example.com/return_path/transaction_identifier",
"account_ref": "CustomerRefOnMerchantSide",
"email": "bobben@example.com",
"locale": "sv",
"mobile_phone": "+46700000000",
"national_identification_number": "19160204-9999",
}
# RESPONSES
{
...
"id": "6a734480-a051-4a05-8405-ac2d8f49102f",
"state": "pending",
"user_form_url": "https://account-sandbox.zimpler.com?code=6a734480-a051-4a05-8405-ac2d8f49102f",
"user_id": null,
}
{
...
"id": "6a734480-a051-4a05-8405-ac2d8f49102f",
"state": "approved",
"user_id": "9b9047da-175f-d29a-dae8-85b428488c2e",
//will be provided or partial provided depending on the information we recive.
"account_information": [
{
"type": "iban",
"account_number": "XXX",
},
{
"type": "national-SE",
"clearing_number": "XXX",
"account_number": "XXX",
},
{
"type": "bic",
"bic": "ELLFSESS"
}
],
}
# GET /v4/accounts/:id
Will return the full accounts information object with the current state.