- 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 Profile
Testing
PUT
/client/profile
update_profile
Last modified:2025-02-06 08:23:14
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
first_name
stringÂ
required
last_name
stringÂ
required
residence_country
stringÂ
required
account_opening_reason
stringÂ
required
tax_residence_country
stringÂ
required
birth_country
stringÂ
required
tax_identification_number
stringÂ
required
citizen_country
stringÂ
required
employment_status
stringÂ
required
date_of_birth
stringÂ
required
gender
stringÂ
required
reason
stringÂ
required
Example
{
"first_name": "API",
"last_name": "doge",
"residence_country": "in",
"account_opening_reason": "hedging",
"tax_residence_country": "in",
"birth_country": "in",
"tax_identification_number": "UX-1989389",
"citizen_country": "in",
"employment_status": "retired",
"date_of_birth": "1969-09-19",
"gender": "male",
"reason": "api test"
}
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 PUT '/client/profile' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "API",
"last_name": "doge",
"residence_country": "in",
"account_opening_reason": "hedging",
"tax_residence_country": "in",
"birth_country": "in",
"tax_identification_number": "UX-1989389",
"citizen_country": "in",
"employment_status": "retired",
"date_of_birth": "1969-09-19",
"gender": "male",
"reason": "api test"
}'
Responses
🟢200Success
application/json
Body
data
array [object {17}]Â
required
client_id
integerÂ
optional
address_id
nullÂ
optional
first_name
stringÂ
optional
last_name
stringÂ
optional
date_of_birth
stringÂ
optional
birth_country
stringÂ
optional
account_opening_reason
stringÂ
optional
employment_status
stringÂ
optional
residence_country
stringÂ
optional
citizen_country
stringÂ
optional
tax_residence_country
stringÂ
optional
tax_identification_number
stringÂ
optional
gender
stringÂ
optional
staff_identifier
nullÂ
optional
reason
stringÂ
optional
created_time
stringÂ
optional
updated_time
stringÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"client_id": 79,
"address_id": null,
"first_name": "API",
"last_name": "doge",
"date_of_birth": "1969-09-19",
"birth_country": "in",
"account_opening_reason": "hedging",
"employment_status": "retired",
"residence_country": "in",
"citizen_country": "in",
"tax_residence_country": "in",
"tax_identification_number": "UX-1989389",
"gender": "male",
"staff_identifier": null,
"reason": "api test",
"created_time": "2024-11-06T03:42:29.865314",
"updated_time": "2024-11-07T03:21:11.595411"
}
],
"meta": {
"endpoint": "/client/profile",
"method": "PUT",
"timing": 1311
}
}
🟠401Unauthorized
🟠400Invalid Request
Modified at 2025-02-06 08:23:14