Carouseller
Home
  • 🚀Getting started
    • Payment glossary
  • Cashier integration
    • Key obtaining
    • Cashier opening
      • iFrame
      • Native version
    • Cashier opening 2.0
      • iFrame
    • Payment processing
    • Webhooks
      • Successful transaction conditions
      • Notification parameters
    • Report request
    • Tracking user's activity in the cashier
    • User reset conditions
    • Signature
  • Payment API
    • API 1.0
      • Key obtaining
      • Deposit
      • Payout
      • Transaction status
    • API 2.0
      • Payment Page Integration
      • Transaction statuses
    • 3DS handler
  • Transaction types
  • Payment methods
  • Test card numbers
Powered by GitBook
On this page
  • Request address
  • Key obtaining request parameters
  • Change theme
  1. Cashier integration
  2. Cashier opening

iFrame

Request address and request parameters for opening cashier in iframe version

Request address

https://cash.{domain}/api/open/
curl -G -d 'key=55ce2fd90c8fd81ae0d2dd3bea822dcaeb019704' https://a.papaya.ninja/api/open/
import requests

url = 'https://a.papaya.ninja/api/open/'

params = dict(
    key='ffec614de0db47f697c7ab1142b4478a54e43fce'
)
resp = requests.get(url=url, params=params)

For cashier operation it is required to add A entry on a sub-domain:

cash. A 88.208.34.181,88.208.34.182

Key obtaining request parameters

Parameter
Mandatory
Format
Description
Example

key

Yes

fixed length string (40)

Key opens a cashier for site_login with customer_ip.

ffec614de0db47f697c7ab1142b4478a54e43fce

Change theme

To change the theme of the cashier for the iframe version, the correct theme parameter must be added to the URL

URL + &theme=theme_1

The theme must be one out of the available:

theme_1
theme_2
theme_3
theme_4
theme_5
theme_6

Here is the complete URL with the theme added

https://cash.{domain}/api/open/&theme=theme_1
PreviousCashier openingNextNative version

Last updated 1 month ago

Page cover image