For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DashboardGet started
  • Getting Started
    • Introduction
    • Quickstart
    • Errors
  • Core Concepts
    • Capabilities
    • Containers
    • Gateway
    • Wallets and top-ups
    • Grants and controls
    • Mandates
    • Approvals
    • Receipts
    • Settlements
  • Authentication
    • Authentication overview
    • Wallet sign-in (SIWE)
    • Connected apps (OAuth)
  • Guides
    • Call a capability
    • Monetize an API
    • Apply for public capability
    • Realtime notifications
  • Agents
    • MCP
    • CLI
  • Admin
    • Capability applications
  • API Reference
    • Overview
    • Authentication
  • Generated API Explorer
      • POSTInitiate an STK top-up
      • GETGet topup status
      • POSTManual top-up (admin)
LogoLogo
DashboardGet started
Generated API ExplorerTopups

Manual top-up (admin)

POST
/v1/topups/manual
POST
/v1/topups/manual
$curl -X POST https://api.lipafy.xyzyz/v1/topups/manual \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "account_id": "string",
> "amount": "string"
>}'
201Created
1{
2 "topup": {
3 "id": "string",
4 "amount": "string",
5 "currency_code": "string",
6 "credits_issued": "string",
7 "provider": "string",
8 "provider_reference": "string",
9 "status": "pending",
10 "created_at": "2024-01-15T09:30:00Z"
11 }
12}
Private operator endpoint for trusted admin environments only. Do not call this from client apps or public integrations.
Was this page helpful?
Previous

Transfer to another account

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
account_idstringRequiredformat: "uuid"
amountstringRequired
currency_codestringOptionalDefaults to KES
notestringOptional<=200 characters

Response

Created
topupobject