Authentication
Your partner client secret
Path Parameters
Body Parameters
The store ID to register the terminal under. If omitted, the merchant’s default store is used.
Response
A short code the merchant enters in the CheckoutX app on their Android device to pair the terminal.
Valid for approximately 120 seconds.
A deep link URL that can open the CheckoutX app directly (if available).
Flow
- Call this endpoint to generate a registration code
- The merchant enters the code in the CheckoutX app on their Android device
- The app pairs with the store and registers as a Tap to Pay terminal
- Poll the interapp status endpoint to check if registration completed
curl -X POST https://api.acountpay.com/v1/partner/merchants/42/card-payments/terminals/interapp \
-H "X-Partner-Client-Id: your-client-id" \
-H "X-Partner-Client-Secret: your-client-secret" \
-H "Content-Type: application/json" \
-d '{}'
{
"registrationCode": "A8K3M2",
"registrationLink": "checkoutx://register?code=A8K3M2"
}