- Gateway API
- Introduction
- Reference
- Sync API
- Async API
- Merchant API
- Introduction
- Reference
- Page
- Pay
- Payout
- Mobile balance
- Card
- Token
- Invoice
- ATM
- Additional
- Card API
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- Mobile SDK
- CMS
Link
POST
https://passport.freedompay.kz/api/v1/oauth/authorize
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Body Params application/json
CLIENT_ID
string
required
CLIENT_SECRET
string
required
redirect_uri
string
required
grants
array[string]
required
Example
{
"redirect_uri": "https://example.com/login",
"grants": [
"read.email",
"read.phone",
"read.date_of_birth",
"read.firstname",
"read.lastname",
"read.gender",
"read.nationality",
"read.profile",
"read.country"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://passport.freedompay.kz/api/v1/oauth/authorize' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"redirect_uri": "https://example.com/login",
"grants": [
"read.email",
"read.phone",
"read.date_of_birth",
"read.firstname",
"read.lastname",
"read.gender",
"read.nationality",
"read.profile",
"read.country"
]
}'
Responses
🟢200Success
application/json
Body
redirect_uri
string
required
Example
{
"redirect_uri": "https://passport.freedompay.kz/login?track_id=ac22c50c-22c7-4aeb-9160-e59b735f9c44&expire_at=1727246098"
}
🟢200Error
Modified at 2025-02-03 10:08:06