POST v1/user/bank/add

MOBILE - Register new bank account to user domain.

Request Information

URI Parameters

None.

Body Parameters

UserBankAddRequestModel
NameDescriptionTypeAdditional information
bank_id

integer

Required

Data type: Text

bank_name

string

Required

bank_iban

string

Required

Data type: Text

bank_fullname

string

Required

Data type: Text

user_id

User ID (GUID)

string

Required

Data type: Text

user_signature

MD5 hash signature for the active user to validate the request

string

Required

Data type: Text

Request Format

application/json, text/json

Sample:
{
  "bank_id": 1,
  "bank_name": "sample string 2",
  "bank_iban": "sample string 3",
  "bank_fullname": "sample string 4",
  "user_id": "sample string 5",
  "user_signature": "sample string 6"
}

Response Information

Resource Description

MOBILE - Register new bank account to user domain.

UserBankAddResultModel
NameDescriptionTypeAdditional information
response

UserBankModel

None.

meta

Basic meta information for the operation result

MetaModel

None.

Response Format

application/json, text/json

Sample:
{
  "response": {
    "bank_account_id": 1,
    "bank_id": 2,
    "bank_name": "sample string 4",
    "bank_iban": "sample string 5",
    "bank_fullname": "sample string 6"
  },
  "meta": {
    "status_code": 1,
    "status_message": "sample string 2"
  }
}