Sipay Business Api
English
  • Turkish
  • English
  1. Account
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. Account

Check Personal Wallet (AccountNumber)

POST
/v1/Account/CheckPersonalWallet
Used to verify whether the recipient is a registered user in the system.
This service supports two types of queries: by account number or by phone number.
This page provides an example of the query using an account number.
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

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/Account/CheckPersonalWallet' \
--header 'Content-Type: application/json' \
--data-raw '{  
  "account_number": "87654321000",
  "currency_code": "TRY"
}'
Response Response Example
{
    "status": 0,
    "code": null,
    "message": null,
    "payload": {
        "exist": true,
        "wallet_number": "7654321000",
        "first_name": "XX***",
        "last_name": "xx****",
        "currency_code": "TRY"
    }
}
Previous
Get Business Account
Next
Check Personal Wallet (PhoneNumber)
Built with