curl --request POST \
--url https://api.payviox.com/session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"currency": "<string>",
"customer": {
"email": "<string>",
"name": "<string>",
"phone": "<string>"
},
"order_id": "<string>",
"items": [
{
"name": "<string>",
"quantity": 123,
"price": 123
}
],
"description": "<string>",
"paymentMethodId": "<string>"
}
'