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
- Mobile app (installed on tenant phone) listens for SMS.
- When it finds a relevant transfer message, it sends data to our backend.
- Backend stores transaction as
pendingfirst. - Customer enters phone + amount on your website.
- Your website calls
payment_link_check. - If a matching
pendingtransaction exists, it becomescompleted. - Our backend sends
GETcallback to your configured endpoint. - 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:
- Store setup
- Understand flow
- Choose integration path:
- WordPress integration
- Custom integration