- 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
Profile
POST
https://passport.freedompay.kz/api/v1/oauth/get-profile
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
request_id
string
required
created_at
string <date-time>
required
Example
{
"request_id": "UUID",
"created_at": "2024-10-17T12:00:00Z"
}
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/get-profile' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "UUID",
"created_at": "2024-10-17T12:00:00Z"
}'
Responses
🟢200Success
application/json
Body
request_id
string
required
status
string
required
accepted
: New request is being processed.rejected
: Request was denied (e.g., permission error).pending
: Request is in progress.freedom_id
string
required
Example
{
"request_id": "string",
"status": "accepted",
"freedom_id": "UUID"
}
Modified at 2025-02-03 10:08:06