{
"amount": 0.01,
"currency": "USD",
"order_id": "string",
"service": "string",
"customer": {
"name": "string",
"email": "string",
"phone": "+11234567890",
"ip": "string"
},
"return_urls": {
"fail": "string",
"success": "string"
},
"webhook_url": "string"
}
curl --location --request POST 'https://prod.your-api-server.com/api/v1/payments' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 0.01,
"currency": "USD",
"order_id": "string",
"service": "string",
"customer": {
"name": "string",
"email": "string",
"phone": "+11234567890",
"ip": "string"
},
"return_urls": {
"fail": "string",
"success": "string"
},
"webhook_url": "string"
}'