Sipay Business Api
Turkish
  • Turkish
  • English
  1. Authentication
Sipay Business Api
Turkish
  • Turkish
  • English
  • Genel Bakış
    • Hızlı Başlangıç Rehberi
    • Partner Cüzdan Entegrasyonu
  • Authentication
    • Get Access Token
      POST
  • Account
    • Get Business Account
      POST
    • Update Business Account
      POST
    • Check Personal Wallet
      POST
  • Wallet
    • Create Wallet For Business Account
      POST
    • Wallet Info
      POST
    • Wallet List By Filter
      POST
  • Transaction
    • Business To Business Transfer
      POST
    • Send Money To Bank Account
      POST
    • Transfer To Virement
      POST
    • Business To Personal Transfer
      POST
  • Transaction Data
    • Summary Record By Filter
      POST
    • Get Withdraw Request By External ID
      POST
    • Get Request Withdraw List By Filter
      POST
    • Transaction Receipt
      POST
  1. Authentication

Get Access Token

POST
/connect/token
Authentication
Retrieves an access token through the client credentials authentication flow.
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
Returned when the token is successfully generated.
Body
object {0}
🟠400Bad Request
Previous
Partner Cüzdan Entegrasyonu
Next
Get Business Account
Built with