PayZuPayZu Docs

Account Management

Account Management groups the read-only endpoints you use for reconciliation, dashboards and operational monitoring.

When to use each one

QuestionEndpoint
How much do I have available right now?GET /user/balance
What are my account data, limits and fees?GET /user
List transactions with filtersGET /user/transactions
Volume, count and conversion rateGET /user/summary

Examples

Best practices

  • Short cache on balance (5 to 30 seconds), avoids rate limit
  • Paginate the statement with limit and cursor, never fetch everything at once
  • Reconcile by clientReference when comparing with your internal database
  • Use the summary for dashboards, avoids summing transactions on the client

On this page