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

Get Business Account

POST
/v1/Account/GetBusinessAccount
Retrieves detailed information about the authenticated business account.
This includes the account number, business type, tax information, contact address, and KYC level.
No request body is required; the system automatically returns the information associated with the user linked to the access token.
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
Returns the authenticated business account information
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/Account/GetBusinessAccount' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
{
    "status": 0,
    "code": "100",
    "message": "İşlem Başarılı",
    "payload": {
        "id": "2111111222222333333",
        "tenant_id": "1",
        "parent_business_account_id": null,
        "name": "X İşletmesi",
        "account_number": "1122334455",
        "business_type": 0,
        "alias": "X İşletmesi",
        "kyc_level": "Contracted",
        "owner_user_id": "2503101387601277448",
        "contact_address_contact_first_name": "xxxx ",
        "contact_address_contact_last_name": "xx",
        "contact_address_contact_email": "xx@xx.com.tr",
        "contact_address_contact_phone": "5555555555",
        "contact_address_address_line1": "üsküdar",
        "contact_address_address_line2": null,
        "contact_address_zip_postal_code": null,
        "contact_address_state_province_code": "34",
        "contact_address_country_code": "90",
        "tax_office": "Üsküdar",
        "tax_number": "1234567890",
        "access_level_status_id": 1,
        "created_date_utc": "2025-03-10T09:24:41.1112116Z",
        "updated_date_utc": "2025-03-10T17:26:05.0888Z",
        "sector_id": "1",
        "group_code": null,
        "is_account_locked": null,
        "ext_account_number": null,
        "is_hidden": null
    }
}
Previous
Get Access Token
Next
Check Personal Wallet (AccountNumber)
Built with