After initiating a payout, LigdiCash notifies you of the result via yourDocumentation Index
Fetch the complete documentation index at: https://developers.ligdicash.com/llms.txt
Use this file to discover all available pages before exploring further.
callback_url. If the callback does not fire — network unavailable, server restarted, delay too long — you can query this endpoint directly with the token returned at creation.
The callback remains the primary method. This endpoint is a safety net, not a substitute for the callback. Do not use it in a tight loop: prefer spaced polling (every 30 to 60 seconds) with a maximum number of attempts.
Endpoint
Parameters
| Parameter | Type | Description |
|---|---|---|
withdrawalToken | query string | The token returned by the payout creation endpoint. |
Required headers
| Header | Value |
|---|---|
Apikey | Your API key |
Authorization | Bearer {AUTH_TOKEN} |
Request example
Response
Request result code.
"00" means the call succeeded. Any other value indicates an error.JWT token of the payout — identical to the one used as a parameter.
Label of the result code from the LigdiCash wiki. Can be empty.
Additional description. Can be empty.
Always
[] on this endpoint.URL to the list of error codes specific to this endpoint.
Payout transaction status:
"completed", "pending", or "notcompleted". See Response codes and statuses.Identifier of the operator that processed the payout (e.g.
"11" for Orange Burkina).Operator name (e.g.
"ORANGE BURKINA").Success
Interpreting the status
Base your business logic on thestatus field.
status | Meaning | Recommended action |
|---|---|---|
completed | Payout finalized successfully | Update your database, notify the beneficiary |
pending | Processing in progress | Wait for the callback; if absent, repoll in 30 to 60 seconds |
notcompleted | Payout failed | Consult wiki for details, notify the requester |
Related pages
- Customer payout — create a payout to LigdiCash wallet
- Merchant payout — create a payout to mobile money
- Response codes and statuses
