The endpoint and http method information used to create an individual account is given below.
HTTP Method | URL |
---|---|
POST | /v1/Account/RegisterPersonalAccount |
Params | Type | Mandatory | Description |
---|---|---|---|
account_number | string | No | User Account Number |
currency_code | string | Yes | Currency |
alias | string | No | Account Name |
user_number | string | No | User Number |
user_first_name | string | Yes | User Name |
user_last_name | string | Yes | User Surname |
user_phone_country_code | string | Yes | User Phone Country Code |
user_phone_number | string | Yes | User Phone Number |
user_email | string | Yes | User E-mail |
contact_address | object | No | Contact Address |
first_name | string | No | Contact Number |
last_name | string | No | Contact Info / User Surname |
string | No | Contact Info / E-mail | |
address_line1 | string | No | Contact Info/ Address |
address_line2 | string | No | Contact Info / Address 2 |
zip_postal_code | string | No | Contact Info / Postal Code |
phone_number | string | No | Contact Info / Phone |
user_password | string | No | Six-Digit Mobile Application Password |
state_province_code | string | No | Contact Info / Country Code Example: "TR" |
country_code | string | No | Contact Info / Phone Country Code Example "90" |
group_code | string | No | Group Code (Used for Association with Business Accounts) |
use_fast_iban | bool | No | Create fast IBAN? |
Params | Type | Description |
---|---|---|
status | int | Status |
code | string | Code |
message | string | Message |
payload | object | Payload |
account_number | string | User Account Number |
user_number | string | User Number |
wallet_number | string | User Wallet Number |
fast_iban | string | User Fast Iban |
kyc_level_code | int | KYC Level |
first_name | string | User Name |
last_name | string | User Surname |
phone_country_code | string | User Phone Country Code |
phone_number | string | User Phone Number |
REQUEST (POST) :
{
"account_number": "XXX48401",
"currency_code": "TRY",
"alias": "XXXAls",
"user_number": "XXX3548401",
"user_first_name": "Barış",
"user_last_name": "Test",
"user_phone_country_code": "90",
"user_phone_number": "0007776662",
"user_password": "147258",
"user_email": "john@example1.com",
"group_code": "55",
"use_fast_iban" : true,
"contact_address": {
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"address_line1": "620 West Valley Street",
"address_line2": "Anaheim, CA",
"zip_postal_code": "92804",
"phone_number": "111111111",
"state_province_code": "TR",
"country_code": "90"
}
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": null,
"payload": {
"account_number": "XXX48401",
"user_number": "XXX3548401",
"wallet_number": "750123891",
"fast_iban": "TR410083801024000750123891",
"kyc_level_code": 10,
"first_name": "Barış",
"last_name": "Test",
"phone_country_code": "90",
"phone_number": "0007776662"
}
}