curl --location '/api/v1/withdrawals' \
--header 'x-signature;' \
--header 'merchant-id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": "100.00",
"currency": "USDT",
"paymentMethod": "card",
"userId": "user-123",
"merchantOperationId": "merch-op-002",
"callbackUrl": "https://example.com/callback",
"requisites": {},
"userData": {
"email": "user@example.com",
"phone": "+1234567890",
"ipAddress": "192.168.1.1",
"firstName": "John",
"lastName": "Doe"
}
}'{
"success": true,
"data": {
"operationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": 1,
"amount": "100.00",
"currency": "USDT",
"errorCode": "1234567890",
"errorMessage": "Error message"
},
"error": null
}