curl --location --request POST '/api/v1/merchants/checkouts' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"customer_email": "test@example.com",
"amount": 460,
"currency_code": "GHS",
"description": "Test mobile money checkout",
"meta_data": {
"order_id": "123456"
}
}'{
"data": {
"id": "a8a28dc9-ed21-4aed-9e28-e659bff5dee9",
"checkout_url": "http://localhost:3000/public/checkouts/PAY-SFSFTPSEOYAD"
},
"message": "Checkout session created",
"status": "success"
}