curl --location --request POST 'https://api.payland.info/api/v2/deposit' \
--header 'x-api-key: {{api_key}}' \
--header 'x-secret-key: {{secret_key}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"transaction_id": "DEP_{{$randomInt}}",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "john@example.com",
"phone": "+905551234567",
"amount": 100.50,
"currency": "TRY",
"payment_method": "bank_transfer",
"payment_type": "three_d_secure",
"bank_id": {{bank_id}},
"callback_url": "https://www.site.com/callback/payland",
"success_url": "https://www.site.com/success",
"failure_url": "https://www.site.com/failure/",
"extra_fields": {
"order_id": "12345"
}
}'