- Deriv Core
- Auth
- Config
- Client
- Get Client System StatusGET
- Get Onboarding StatusGET
- Create TNCPOST
- Get Client Financial AssessmentGET
- Update Financial AssessmentPUT
- Get Client Tax InformationGET
- Create Client Tax InformationPOST
- Update Client Tax InformationPUT
- Create Client ProfilePOST
- Get Client ProfileGET
- Create Client AddressPOST
- Get Client AccountsGET
- Update ProfilePUT
- Get AddressGET
- Get Total BalanceGET
- Create Financial AssessmentPOST
- Get Client StatusGET
- Get Login HistoryGET
- Update Client AddressPUT
- Upload Client ProfilePOST
- Wallet
- KYC
- Payment
- Fiat Payment
- Platform
- Auth
- Brand
Get KYC Access Token
Testing
POST
/kyc/access-token
Last modified:2025-03-06 02:41:57
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
flow
stringÂ
required
Example
{
"flow": "poi"
}
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 '/kyc/access-token' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"flow": "poi"
}'
Responses
🟢200Success
application/json
Body
data
array [object {4}]Â
required
token
stringÂ
optional
userId
stringÂ
optional
email
stringÂ
optional
phone
stringÂ
optional
meta
objectÂ
required
timing
integerÂ
required
endpoint
stringÂ
required
method
stringÂ
required
Example
{
"data": [
{
"token": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.*************************************************************.-v2",
"userId": "303",
"email": "mohammed.luqmaan+1734685640117@champion-trader.com",
"phone": ""
}
],
"meta": {
"timing": 51,
"endpoint": "/kyc/access-token",
"method": "POST"
}
}
🟠401Unauthorized
Modified at 2025-03-06 02:41:57