- 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
Update User
Testing
POST
/update-user
update_user
Last modified:2025-02-06 08:23:16
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
access_token
stringÂ
required
refresh_token
stringÂ
required
email
stringÂ
required
Example
{
"access_token": "{{CLIENT_AUTH_TOKEN}}",
"refresh_token": "{{CLIENT_REFRESH_TOKEN}}",
"phone": "(701) 335-8618"
}
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 '/update-user' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"access_token": "{{CLIENT_AUTH_TOKEN}}",
"refresh_token": "{{CLIENT_REFRESH_TOKEN}}",
"phone": "(701) 335-8618"
}'
Responses
🟢200OK
application/json
Body
data
array [object {3}]Â
required
status
integerÂ
optional
code
stringÂ
optional
message
stringÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"status": 200,
"code": "Success",
"message": "Please check your email or phone for the verification code."
}
],
"meta": {
"endpoint": "/update-user",
"method": "POST",
"timing": 443
}
}
🟠400Invalid Request
Modified at 2025-02-06 08:23:16