curl --location 'https://api-vltzpay.beespokedev.com/api/v1.0/payments/checkout' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "app_your_provisioned_key",
"reference": "order_01J7Y9KZM2KCG6TAVQT4G31PW7",
"amount": 1499.5,
"currency": "PHP",
"customer": "customer_12345",
"description": "VLTZ Pro subscription",
"redirectUri": "https://merchant.example/payments/return",
"successUrl": "https://merchant.example/payments/success",
"cancelUrl": "https://merchant.example/payments/cancelled",
"failedUrl": "https://merchant.example/payments/failed",
"callbackUri": "https://merchant.example/api/payment-events",
"billing": {
"firstName": "Juan",
"lastName": "Dela Cruz",
"email": "juan@example.com",
"phone": "+639171234567",
"address": "123 Rizal Street",
"city": "Makati",
"state": "Metro Manila",
"postalCode": "1200",
"country": "PH"
},
"lineItems": [
{
"name": "VLTZ Pro subscription",
"amount": 1499.5,
"quantity": 1,
"currency": "PHP"
}
],
"metadata": {
"orderId": "order_01J7Y9KZM2KCG6TAVQT4G31PW7"
}
}'