- 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 MT5 Account
Testing
POST
/platform/uae/mt5/users
create_mt5_account
Last modified:2025-03-06 05:30:48
Request
Header Params
Authorization
stringÂ
required
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
is_demo
stringÂ
required
account_type
stringÂ
required
password
stringÂ
required
Example
{
"is_demo": "false",
"account_type": "standard",
"password": "***********"
}
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 '/platform/uae/mt5/users' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"is_demo": "false",
"account_type": "standard",
"password": "***********"
}'
Responses
🟢200OK
application/json
Body
data
array [object {9}]Â
required
id
stringÂ
optional
group
stringÂ
optional
name
stringÂ
optional
first_name
stringÂ
optional
last_name
stringÂ
optional
middle_name
stringÂ
optional
country
stringÂ
optional
balance
stringÂ
optional
credit
stringÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"id": "10071895",
"group": "real\\p01_ts01\\champion\\dsvg_default_usd",
"name": "API+Doge+",
"first_name": "API+Doge+",
"last_name": "",
"middle_name": "",
"country": "in",
"balance": "0.00",
"credit": "0.00"
}
],
"meta": {
"endpoint": "/platform/mt5/users",
"method": "POST",
"timing": 4921
}
}
Modified at 2025-03-06 05:30:48