Sipay Business Api
English
  • Turkish
  • English
  1. Transaction
Sipay Business Api
English
  • Turkish
  • English
  • Overview
    • Sipay Business API
    • Partner Wallet Flow Guide
  • 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
    • Transaction Type Code List
    • How to payout status check?
    • Summary Record By Filter
      POST
    • Get Request Withdraw List By Filter
      POST
    • Get Request Withdraw By Ext Id
      POST
    • Transaction Receipt
      POST
  • Webhook
    • Bank Transfer Webhook
    • Top-up Webhook
    • Failed Top-Up Webhook
  1. Transaction

Business To Personal Transfer

POST
/v1/Transaction/BusinessToPersonalTransfer
Used to transfer funds from a business wallet to an individual user's wallet.
The recipient's personal wallet number is required. To obtain this number, use the CheckPersonalWallet service.
Each transaction must include a unique ext_transaction_id.
You’ll get the token from 'https://idsuat.walletgate.io', and all API operations will go through https://stsapiuat.walletgate.io.
We’ll share the exact production domain details when the live environment setup begins.

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Successful response
Body

🔵301Duplicate
🔵300NotFound
🔵311Insufficient Balance
🔵303MustBeDifferentWallet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/Transaction/BusinessToPersonalTransfer' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ext_transaction_id": "84315145343415134123145455352459",
    "sender_wallet_number": "7654321",
    "amount": 5,
    "currency_code": "TRY",
    "description": "",
    "receiver_wallet_number": "87654321"
}'
Response Response Example
200 - Success
{
    "status": 0,
    "code": "100",
    "message": "İşlem başarılı",
    "payload": {
        "transaction_id": "2111111222222333333",
        "transaction_amount": 5.0,
        "receiver_first_name": "abc",
        "receiver_last_name": "abcd",
        "receiver_account_number": "6156574429",
        "receiver_wallet_number": "513623659",
        "sender_wallet_info": {
            "id": "3111111222222333333",
            "tenant_id": "0",
            "name": "sadsadsadsadsa",
            "account_number": "7181735939",
            "account_type": "Business",
            "created_date_utc": "2024-09-03T08:28:28.515322+00:00",
            "updated_date_utc": null,
            "number": "1809672675",
            "fast_iban": null,
            "phone_country_code": null,
            "phone_number": null,
            "email": null,
            "total_balance": 24807.24,
            "monthly_incoming_total": 0.0,
            "monthly_outgoing_total": 0.0,
            "access_level_status_id": 1,
            "access_level_status": "Aktif",
            "payment_balance": {
                "available": 0.00,
                "unavailable": 0.00
            },
            "cash_balance": {
                "available": 24805.24,
                "unavailable": 2.00
            },
            "transaction_limits": {
                "max_balance": 200000.0000,
                "topup_credit_limit": 186790.9629,
                "topup_cash_limit": 186790.9629,
                "withdrawal_limit": 199245.0000,
                "payment_limit": 200000.0000,
                "wallet_to_wallet_limit": 199975.0000
            },
            "kyc_level_status": null,
            "currency_code": "TRY",
            "user_kyc_info": null,
            "is_topup_default": false,
            "tax_number": null,
            "loyalty_record_required": false,
            "ext_account_number": null,
            "is_hidden": null
        }
    }
}
Previous
Wallet List By Filter
Next
Business To Business Transfer
Built with