- 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 Financial Assessment
Developing
PUT
/client/financial-assessment
update_financial_assessment
Last modified:2025-03-11 02:41:02
Request
Header Params
Authorization
stringÂ
required
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
industry_of_employment
stringÂ
required
net_annual_income
stringÂ
required
employer_name
stringÂ
required
education_level
stringÂ
required
estimated_net_worth
stringÂ
required
source_of_wealth
stringÂ
required
regular_expense
stringÂ
required
Example
{
"industry_of_employment": "Financial Services & Banking",
"net_annual_income": "More than AED 600,000",
"employer_name": "deriv",
"education_level": "Postgraduate/Professional Qualification",
"estimated_net_worth": "More than AED 600,000",
"source_of_wealth": "Inheritance",
"regular_expense": "Less than AED 5,000"
}
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/financial-assessment' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"industry_of_employment": "Financial Services & Banking",
"net_annual_income": "More than AED 600,000",
"employer_name": "deriv",
"education_level": "Postgraduate/Professional Qualification",
"estimated_net_worth": "More than AED 600,000",
"source_of_wealth": "Inheritance",
"regular_expense": "Less than AED 5,000"
}'
Responses
🟢200OK
application/json
Body
data
array [object {7}]Â
required
employer_name
stringÂ
optional
education_level
stringÂ
optional
regular_expense
stringÂ
optional
source_of_wealth
stringÂ
optional
net_annual_income
stringÂ
optional
estimated_net_worth
stringÂ
optional
industry_of_employment
stringÂ
optional
meta
object