Check Deposit Status
monei_check_deposit_statusCheck deposit status with a reference to confirm if payment completed, pending, failed, or cancelled. Use after generating a deposit link to verify user payment.
Instructions
Checks the status of a deposit by its reference string.
Use this after generating a deposit link to confirm whether the user has completed payment. Poll this every 30-60 seconds if the user is waiting.
Args:
reference (string): The reference returned from monei_generate_deposit_link
Returns: { "reference": string, "status": string, // "PENDING" | "COMPLETED" | "FAILED" | "CANCELLED" "amount": number, "currency": string, "paidAt": string | null }
Examples:
"Did my deposit go through?" -> call this with the reference from the deposit link
"Check if the ₦50k arrived" -> call this with the deposit reference
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reference | Yes | Transaction reference string returned from a previous operation |