- 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
Create Financial Assessment
Testing
POST
/client/financial-assessment
create_financial_assessment
Last modified:2025-03-07 03:21:12
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
estimated_net_worth
stringÂ
required
occupation
stringÂ
required
source_of_wealth
stringÂ
required
net_annual_income
stringÂ
required
primary_source_of_funds_for_trading
stringÂ
required
Example
{
"estimated_net_worth": "{{$helpers.arrayElement(['Less than $10,000','$10,001 - $25,000','$25,001 - $50,000','$50,001 - $75,000','$75,001 - $100,000','$100,001 - $250,000','$250,001 - $500,000','Over $500,000'])}}",
"occupation": "{{$helpers.arrayElement(['Director','Manager','Coordinator','Specialist','Administrator','Assistant','Technician'])}}",
"source_of_wealth": "{{$helpers.arrayElement(['Accumulation of Income/Savings','Business','Inheritance','Investments and Dividends ','Retirement Income','Proceeds of sale of cryptocurrencies','Sale of Property'])}}",
"net_annual_income": "{{$helpers.arrayElement(['Less than $10,000','$10,001 - $25,000','$25,001 - $50,000','$50,001 - $75,000','$75,001 - $100,000','$100,001 - $250,000','$250,001 - $500,000','Over $500,000'])}}",
"primary_source_of_funds_for_trading": "{{$helpers.arrayElement(['Gaming or Casino','Financial Services & Banking','Technology & Communications','Healthcare & Medical Services','Manufacturing, Mining & Industrial','Professional Services','Consumer Services & Retail'])}}"
}
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 '/client/financial-assessment' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"estimated_net_worth": "{{$helpers.arrayElement(['\''Less than $10,000'\'','\''$10,001 - $25,000'\'','\''$25,001 - $50,000'\'','\''$50,001 - $75,000'\'','\''$75,001 - $100,000'\'','\''$100,001 - $250,000'\'','\''$250,001 - $500,000'\'','\''Over $500,000'\''])}}",
"occupation": "{{$helpers.arrayElement(['\''Director'\'','\''Manager'\'','\''Coordinator'\'','\''Specialist'\'','\''Administrator'\'','\''Assistant'\'','\''Technician'\''])}}",
"source_of_wealth": "{{$helpers.arrayElement(['\''Accumulation of Income/Savings'\'','\''Business'\'','\''Inheritance'\'','\''Investments and Dividends '\'','\''Retirement Income'\'','\''Proceeds of sale of cryptocurrencies'\'','\''Sale of Property'\''])}}",
"net_annual_income": "{{$helpers.arrayElement(['\''Less than $10,000'\'','\''$10,001 - $25,000'\'','\''$25,001 - $50,000'\'','\''$50,001 - $75,000'\'','\''$75,001 - $100,000'\'','\''$100,001 - $250,000'\'','\''$250,001 - $500,000'\'','\''Over $500,000'\''])}}",
"primary_source_of_funds_for_trading": "{{$helpers.arrayElement(['\''Gaming or Casino'\'','\''Financial Services & Banking'\'','\''Technology & Communications'\'','\''Healthcare & Medical Services'\'','\''Manufacturing, Mining & Industrial'\'','\''Professional Services'\'','\''Consumer Services & Retail'\''])}}"
}'
Responses
🟢200OK
application/json
Body
data
array [object {4}]Â
required
client_id
integerÂ
optional
data
objectÂ
optional
created_time
stringÂ
optional
updated_time
nullÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"client_id": 938,
"data": {
"occupation": "Manager",
"source_of_wealth": "Retirement Income",
"net_annual_income": "Over $500,000",
"estimated_net_worth": "$100,001 - $250,000",
"primary_source_of_funds_for_trading": "Technology & Communications"
},
"created_time": "2025-03-07T03:13:41.759205",
"updated_time": null
}
],
"meta": {
"endpoint": "/client/financial-assessment",
"method": "POST",
"timing": 963
}
}
🟠401Unauthorized
🟠400Invalid Request
🟠409Duplicate Request
Modified at 2025-03-07 03:21:12