curl --location --request POST 'https://api.payland.info/api/v2/withdraw' \
--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": "WTH_{{$randomInt}}",
"bank_id": {{bank_id}},
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"amount": 500.00,
"iban": "TR123456789012345678901234",
"callback_url": "https://www.site.site/callback/payland",
"extra_fields": {
"note": "Withdrawal request"
}
}'