Sipay Business Api
English
  • Turkish
  • English
  1. Wallet
Sipay Business Api
English
  • Turkish
  • English
  • Overview
    • Partner Wallet Flow Guide
    • Sipay Business API
  • Authentication
    • Get Access Token
      POST
  • Account
    • Get Business Account
      POST
    • Check Personal Wallet (AccountNumber)
      POST
    • Check Personal Wallet (PhoneNumber)
      POST
  • Wallet
    • Create Wallet For Business Account
      POST
    • Wallet Info
      POST
    • Wallet List By Filter
      POST
  • Transaction
    • Business To Personal Transfer
      POST
    • Business To Business Transfer
      POST
    • Send Money To Bank Account
      POST
    • Transfer To Virement
      POST
  • Transaction Data
    • Summary Record By Filter
      POST
    • Get Request Withdraw List By Filter
      POST
    • Get Request Withdraw By Ext Id
      POST
    • Transaction Receipt
      POST
  • WebHook
    • Bankaya Para Transferi Webhook
    • Para Yükleme Webhook
  1. Wallet

Create Wallet For Business Account

POST
/v1/Wallet/CreateWalletForBusinessAccount
Wallet
Bu API, kurumsal (işletme) bir kullanıcıya yeni bir cüzdan oluşturmak için kullanılır.
Payload alanı, yeni oluşturulan cüzdanın numarasını döner.
Bu API sadece kurumsal hesaplara cüzdan açar, bireysel hesaplar için kullanılamaz.
Eğer FAST destekli işlem yapılacaksa use_fast_iban alanı true olmalıdır.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://stsapiuat.walletgate.io/v1/Wallet/CreateWalletForBusinessAccount' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "test",
    "currency_code": "TRY",
    "use_fast_iban": false,
    "tenant_id": 1
}'
Response Response Example
{
    "status": 0,
    "code": "100",
    "message": null,
    "payload": "5169484561"
}

Request

Body Params application/json
name
string 
required
Oluşturulacak Cüzdan Adı
currency_code
string 
required
Para Birimi
Example:
"TRY"
use_fast_iban
boolean 
optional
Fast IBAN Kullanımı
tenant_id
integer 
optional
Temsilci ID
Examples

Responses

🟢200OK
application/json
Başarılı yanıt
Body
status
integer 
required
Statü
code
string 
required
Kod
message
string 
required
Mesaj
payload
string 
required
Yeni Oluşan Cüzdan Numarası
Previous
Check Personal Wallet (PhoneNumber)
Next
Wallet Info
Built with