OMNO API Documentation (2.0.0)
Download OpenAPI description
Overview
E-mail
Languages
Servers
Production
https://api.omno.com/
Sandbox
https://api.omno.dev/
- Production
https://api.omno.com/public/payin/{payinId}/process/saved-card
- Sandbox
https://api.omno.dev/public/payin/{payinId}/process/saved-card
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.omno.com/public/payin/{payinId}/process/saved-card' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"browser": {
"acceptHeader": "string",
"userAgent": "string",
"language": "string",
"timeZoneOffset": 0,
"timeZone": "string",
"colorDepth": 0,
"screenHeight": 0,
"screenWidth": 0,
"windowHeight": 0,
"windowWidth": 0,
"javaEnabled": true,
"javascriptEnabled": true,
"customerIp": "string"
},
"savedCardData": {
"cardId": "string",
"cvv": "string"
}
}'
Response
application/json
{ "paymentId": "string", "status": "CREATED" }
- Production
https://api.omno.com/public/payin/{payinId}/process/direct-link
- Sandbox
https://api.omno.dev/public/payin/{payinId}/process/direct-link
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.omno.com/public/payin/944732c4608c441aa91379478b91f76e/process/direct-link \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"browser": {
"acceptHeader": "string",
"userAgent": "string",
"language": "string",
"timeZoneOffset": 0,
"timeZone": "string",
"colorDepth": 0,
"screenHeight": 0,
"screenWidth": 0,
"windowHeight": 0,
"windowWidth": 0,
"javaEnabled": true,
"javascriptEnabled": true,
"customerIp": "string"
},
"additionalData": {
"property1": {},
"property2": {}
}
}'
Response
application/json
{ "paymentId": "string", "status": "CREATED", "redirectUrl": "string" }
- Production
https://api.omno.com/public/payin/{payinId}/process/card
- Sandbox
https://api.omno.dev/public/payin/{payinId}/process/card
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.omno.com/public/payin/{payinId}/process/card' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"browser": {
"acceptHeader": "string",
"userAgent": "string",
"language": "string",
"timeZoneOffset": 0,
"timeZone": "string",
"colorDepth": 0,
"screenHeight": 0,
"screenWidth": 0,
"windowHeight": 0,
"windowWidth": 0,
"javaEnabled": true,
"javascriptEnabled": true,
"customerIp": "string"
},
"cardData": {
"cardNumber": "string",
"expirationMonth": "string",
"expirationYear": "string",
"cvv": "string",
"cardholderName": "string"
},
"saveCard": true
}'
Response
application/json
{ "paymentId": "string", "status": "CREATED" }