Cashier API
curl -i -X PUT \
'https://omno-api.redocly.app/_mock/openapi_final_casefixed/public/cashier/session/{sessionId}/balance' \
-H 'Authorization: YOUR_API_KEY_HERE'
Create Cashier Request
Customer information
Your defined unique identifier for this customer.
Customer billing information
Customer billing country code (ISO 3166-1 alpha-2). Ex: GE for Georgia
Currency for the cashier session, in which all payin/payout transaction will be created
Whether or not this customer is KYC verified in your system.
Number of previous transactions in different payment system.
curl -i -X POST \
https://omno-api.redocly.app/_mock/openapi_final_casefixed/public/cashier/session \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"customer": {
"externalUserId": "example_externaluserid",
"firstName": "example_firstname",
"lastName": "example_lastname",
"email": "example_email",
"phoneNumber": "example_phonenumber",
"dateOfBirth": "example_dateofbirth",
"billing": {
"address": "example_address",
"city": "example_city",
"state": "example_state",
"countryCode": "example_countrycode",
"postalCode": "example_postalcode"
}
},
"returnUrls": {
"success": "example_success",
"failure": "example_failure"
},
"currency": "example_currency",
"kycVerified": true,
"previousTransactionCount": 0,
"balance": 0
}'
{ "sessionId": "example_sessionid", "checkoutUrl": "example_checkouturl" }