- 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
Request
GET
https://passport.freedompay.kz/api/v1/oauth/get-profile/status
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
Example
{
"request_id": "string"
}
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 GET 'https://passport.freedompay.kz/api/v1/oauth/get-profile/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "string"
}'
Responses
🟢200Success
application/json
Body
request_id
string
required
status
string
required
pending
: Request is being processed (data valid for 24 hrs).completed
: Request successfully completed (data valid for 60 min).failed
: An error occurred (data valid for 60 min).not_found
: The request ID lifetime has expired.freedom_id
string <UUID>
required
profile
object
optional
datetime
string <date-time>
required
Example
{
"request_id": "string",
"status": "completed",
"freedom_id": "UUID",
"profile": {},
"datetime": "2024-10-17T12:10:00Z"
}
Modified at 2025-02-03 10:55:01