Skip to content

What is this service?

We are a payment integration service that helps your website receive payment transactions (Vodafone Cash / e & / InstaPay to Vodafone Cash), verify them, and connect them to your business logic.

In simple terms:

  • Customer sends transfer
  • Our system captures transaction via mobile app
  • Your website asks for verification
  • On match, payment is confirmed and your website gets completion callback

Who is this for?

This service is suitable if you run:

  • SMM panel
  • E-commerce store
  • Balance top-up / wallet platform
  • Paid services website

and you need payment transfers to update customer balance/orders/services automatically.

Pseudo flow diagram

text
[Customer sends transfer]
          |
          v
[Mobile App on tenant phone reads SMS]
          |
          v
[Our Server stores transaction as PENDING]
          |
          v
[Customer opens your website and submits phone + amount]
          |
          v
[Your website calls /api/payment_link_check]
          |
          v
   [Match found?]
        |
   _ _ _ _ _  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  |                                         |
  Yes                                      No
  |                                         |
  v                                         v
[PENDING -> COMPLETED]   [Return failure to your website]
  |
  v
[Our Server sends GET callback to your configured endpoint]
  |
  v
[Your website updates DB (balance/order/service)]

Flow explained

  1. Mobile app (installed on tenant phone) listens for SMS.
  2. When it finds a relevant transfer message, it sends data to our backend.
  3. Backend stores transaction as pending first.
  4. Customer enters phone + amount on your website.
  5. Your website calls payment_link_check.
  6. If a matching pending transaction exists, it becomes completed.
  7. Our backend sends GET callback to your configured endpoint.
  8. Your website updates DB according to your logic.

Core terms (quick glossary)

  • Store: your integration profile/configuration.
  • store_id: your store ID in our system.
  • API Token: auth key for API calls.
  • payment_link_check: matching/verification endpoint.
  • callback endpoint: your URL that receives completion callback.

Where to start from scratch

Read in this order:

  1. Store setup
  2. Understand flow
  3. Choose integration path:
    • WordPress integration
    • Custom integration