- 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 PEP
Developing
POST
/client/pep
create_pep
Last modified:2025-03-04 02:53:01
Request
Header Params
Authorization
stringÂ
optional
Example:
{{CLIENT_AUTH_TOKEN}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
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/pep' \
--header 'Authorization: {{CLIENT_AUTH_TOKEN}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}'
Responses
🟢200Success
application/json
Body
data
array [object {5}]Â
required
client_id
integerÂ
optional
tag_id
integerÂ
optional
assigned_at
stringÂ
optional
assigned_by
stringÂ
optional
reason
nullÂ
optional
meta
objectÂ
required
endpoint
stringÂ
required
method
stringÂ
required
timing
integerÂ
required
Example
{
"data": [
{
"client_id": 864,
"tag_id": 1,
"assigned_at": "2025-03-04T04:34:04.491124",
"assigned_by": "system",
"reason": null
}
],
"meta": {
"endpoint": "/client/pep",
"method": "POST",
"timing": 1759
}
}
Modified at 2025-03-04 02:53:01