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": "5317f3cb-f2d8-4942-9aa3-16945b06781a",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"email": "john@example.com",
"phone": "+905551234567",
"amount": 250,
"currency": "EUR",
"payment_method": "credit_card",
"payment_type": "three_d_secure",
"callback_url": "https://www.site.com/callback/payland",
"success_url": "https://www.site.com/success",
"failure_url": "https://www.site.com/failure/",
"card_holder": "John Doe",
"card_number": "4111111111111111",
"exp_month": "01",
"exp_year": "30",
"cvv": "000"
}'