Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Understand how errors are returned and handled in the Monei Python SDK.
MoneiError
from monei import MoneiClient, MoneiError try: tx = monei.payout.bank_transfer({...}) except MoneiError as err: print(err.status_code) # HTTP status code print(err.message) # Human-readable error print(err.code) # Machine-readable error code
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
VALIDATION_ERROR
INSUFFICIENT_FUNDS
RATE_LIMITED
INTERNAL_ERROR