The relevant endpoint and http method information for the confirmation of whether the institution to be sent is a user or not is given below.
| HTTP Method | URL |
|---|---|
| POST | /v1/Account/CheckBusinessWallet |
| Params | Type | Mandatory | Description |
|---|---|---|---|
| account_number | string | Yes | Account Number |
| currency_code | string | Yes | Currency Code |
| Params | Type | Description |
|---|---|---|
| status | int | Status |
| code | string | Code |
| message | string | Message |
| payload | object | Payload |
| name | string | Name |
| wallet_number | string | Wallet Number |
| currency_code | string | Currency Code |
REQUEST (POST):
{
"account_number": "19071907",
"currency_code": "TRY"
}
RESPONSE:
{
"status" : 0,
"code" : 100,
"message" : "Kurum sistemde kayıtlı",
payload : {
{
"exist": true,
"name": "Firma Brand",
"wallet_number": "FB_FRM123456WALTRY",
"currency_code": "TRY"
}
}