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

Get Access Token

POST
/connect/token
Authentication
Retrieves an access token through the client credentials authentication flow.
The token does expire,the expires_in value is 3600 seconds. So, you should generate a new token at least once every hour or before it expires.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://stsapiuat.walletgate.io/connect/token' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=your_client_id' \
--data-urlencode 'client_secret=your_client_secret' \
--data-urlencode 'scope=sts_business_api'
Response Response Example
200 - Success
{
    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
    "token_type": "Bearer",
    "expires_in": 3600,
    "scope": "sts_business_api"
}

Request

Body Params application/x-www-form-urlencoded
grant_type
string 
required
Example:
client_credentials
client_id
string 
required
Example:
your_client_id
client_secret
string 
required
Example:
your_client_secret
scope
string 
required
Example:
sts_business_api

Responses

🟢200OK
application/json
Error message returned when the request is made with invalid client credentials.
Body
object {0}
🟠400Bad Request
Previous
Sipay Business API
Next
Get Business Account
Built with