curl --location --request POST 'https://prod.your-api-server.com/api/v1/deposits/fiat/initiate' \
--header 'X-API-Signature: {{x_api_signature}}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 300,
"currency": "ARS",
"payment_method_code": "macro_ar",
"merchant_transaction_id": "4adb427f-b062-4705-8d95-00c57916cd3a",
"order": {
"id": "339f8edb-cd94-4ea7-a6b6-d7621f57cf92",
"description": "Test"
},
"merchant_notification_url":"https://webhook.site/821b631d-534a-4494-9a4d-93dd9bd9ae1b",
"customer": {
"firstName": "John",
"lastName": "Doe",
"personalId": "12343113",
"email": "test@gmail.com",
"country": "AR",
"phone": "+541121231234"
},
"returnUrls": {
"default": "https://webhook.site/821b631d-534a-4494-9a4d-93dd9bd9ae1b?return=default",
"success": "https://webhook.site/821b631d-534a-4494-9a4d-93dd9bd9ae1b?return=success",
"failure": "https://webhook.site/821b631d-534a-4494-9a4d-93dd9bd9ae1b?return=failure"
}
}'