curl --request POST \
--url https://pay.sandbox.yabetoopay.com/v1/sessions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"total": 200000,
"currency": "xaf",
"accountId": "acct_iNXIGeot1lqyhGI5eP7KL0LcWTCTgFLytfRa",
"successUrl": "https://monsite.com/checkout-success",
"cancelUrl": "https://monsite.com/checkout-cancel",
"metadata": {
"test": "ok"
},
"items": [
{
"productId": "prt_XoPjNH2l5Q1g19mIZPxqYWEXwRJzOmlNXhcb",
"quantity": 1,
"price": 200000,
"productName": "Écran LG"
}
]
}'