- 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
Deposit Transaction
Developing
POST
/payment/premier-cashier/deposit-notification
deposit
Last modified:2025-03-12 09:04:48
Request
Header Params
cashier-signature
stringÂ
optional
Example:
{{DEPOSIT_SIGNATURE}}
x-client-id
stringÂ
optional
Default:
{{RL_EXCLUSION_KEY}}
Body Params application/json
pin
stringÂ
required
tokenname
stringÂ
required
frontend
stringÂ
required
timestamp
integerÂ
required
frontend_id
integerÂ
required
event
stringÂ
required
transaction
objectÂ
required
traceid
integerÂ
required
payment_type
stringÂ
required
created_date
stringÂ
required
utc_offset
integerÂ
required
tran_type
stringÂ
required
currency_code
stringÂ
required
card
objectÂ
required
amount
integerÂ
required
created_by
stringÂ
required
status
stringÂ
required
ip_address
stringÂ
required
crm
objectÂ
required
Example
{
"frontend_id": 918,
"frontend": "Deriv (UAE) LLC AED",
"crm": {},
"transaction": {
"card": {
"cardholder_name": "Bala K",
"card_exp": "05/2025",
"issuer_country": "US",
"cascade_level": 0,
"corporate": false,
"issuer_name": "JPMORGAN CHASE BANK, N.A.",
"gift_prepaid": false,
"payment_method": "VISA",
"card_number_masked": "411111******1111"
},
"currency_code": "AED",
"ip_address": "140.82.192.112",
"created_by": "INTERNET",
"tran_type": "deposit",
"utc_offset": 0,
"updated_date": "3/6/2025 3:10:17 AM",
"amount": 20,
"created_date": "3/6/2025 3:10:17 AM",
"status": "declined",
"payment_type": "card",
"traceid": 991922495,
"updated_by": "INTERNET"
},
"pin": "854",
"timestamp": 1741230617,
"event": "deposit_failed",
"tokenname": "token",
"processor": {
"traceid": 991922495,
"approved": "N",
"fx_rate": 1,
"tran_type": "deposit",
"descriptor": "CCReview",
"transaction_id": "991922495",
"pp_currency_code": "AED",
"pp_amount": 20,
"name": "CCReview"
}
}
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 '/payment/premier-cashier/deposit-notification' \
--header 'cashier-signature: {{DEPOSIT_SIGNATURE}}' \
--header 'x-client-id: {{RL_EXCLUSION_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"frontend_id": 918,
"frontend": "Deriv (UAE) LLC AED",
"crm": {},
"transaction": {
"card": {
"cardholder_name": "Bala K",
"card_exp": "05/2025",
"issuer_country": "US",
"cascade_level": 0,
"corporate": false,
"issuer_name": "JPMORGAN CHASE BANK, N.A.",
"gift_prepaid": false,
"payment_method": "VISA",
"card_number_masked": "411111******1111"
},
"currency_code": "AED",
"ip_address": "140.82.192.112",
"created_by": "INTERNET",
"tran_type": "deposit",
"utc_offset": 0,
"updated_date": "3/6/2025 3:10:17 AM",
"amount": 20,
"created_date": "3/6/2025 3:10:17 AM",
"status": "declined",
"payment_type": "card",
"traceid": 991922495,
"updated_by": "INTERNET"
},
"pin": "854",
"timestamp": 1741230617,
"event": "deposit_failed",
"tokenname": "token",
"processor": {
"traceid": 991922495,
"approved": "N",
"fx_rate": 1,
"tran_type": "deposit",
"descriptor": "CCReview",
"transaction_id": "991922495",
"pp_currency_code": "AED",
"pp_amount": 20,
"name": "CCReview"
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-03-12 09:04:48