SShortSingh.
Back to feed

Developer Guide: How to Integrate with MYOB API After March 2025 Overhaul

0
·2 views

MYOB is the dominant accounting software platform for small and medium businesses in Australia and New Zealand, making API integration a common requirement for SaaS products targeting the ANZ market. The MYOB Business API is a REST-based JSON service supporting OAuth 2.0, covering core accounting functions such as invoices, contacts, payroll, and general ledger entries for both desktop and cloud-hosted files. In March 2025, MYOB overhauled its OAuth authentication flow, requiring all new integrations to use updated scopes and credentials, while keys issued before that date continue on the old system. Developers must register through the MYOB Developer Program at developer.myob.com to obtain a client ID and secret, with strict redirect URI matching enforced during authentication. Default API rate limits are set at 8 requests per second and one million requests per day, with a cap of two active API keys per developer account at any given time.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Agentic AI Memory Evolves Into a Core Architectural Layer in 2026

AI memory in agentic systems has moved far beyond simple chat history buffering, becoming a foundational design layer with its own benchmarks and security considerations. Researchers and engineers now distinguish between three memory types — episodic, semantic, and procedural — with procedural memory, which enables agents to improve at tasks over time, still the least mature. The architectural landscape is split between vector-based retrieval and graph-augmented approaches, such as Zep's Graphiti engine, which handles temporal reasoning more effectively by mapping entity relationships rather than relying on embedding distance alone. Frameworks like Letta take an OS-inspired tiered approach, treating memory as something agents actively manage rather than passively query. Persistent memory also introduces a distinct and underappreciated security risk, as it creates a durable attack surface that behaves differently from conventional prompt injection threats.

0
ProgrammingDEV Community ·

No Stripe in Your Country? Map Your Full Billing System Before Switching Providers

Founders building SaaS products in countries where Stripe is unavailable often rush to replace it with the first alternative they find, but experts warn this approach misses deeper structural issues. The critical question is not just which provider to use, but whether a completed payment reliably grants the correct user access every single time. A sound billing system requires a clear, unbroken chain from pricing page through checkout, webhook handling, entitlement logic, and failed-payment recovery. Common failure points include delayed webhooks, mismatched email addresses, duplicate payment events, and scattered sources of truth for paid access. Developers are advised to standardize one checkout path, one webhook strategy, and one authoritative record of user entitlements before evaluating any specific payment provider.

0
ProgrammingDEV Community ·

How Tailscale Mesh VPN Simplifies Home Lab Networking Without Port Forwarding

A developer has detailed how Tailscale, a WireGuard-based mesh VPN, replaced a complex home network setup involving port forwarding, dynamic DNS, and manual IP management. After installing Tailscale on each device and signing in via an identity provider, all machines join a private network with stable addresses and hostname-based routing through MagicDNS. The tool automatically punches through NAT without requiring firewall changes, using a coordination server to broker encrypted peer-to-peer connections. Tailscale SSH further eliminates the need for traditional SSH key management by using the same identity that authenticates devices to the network. Additional features like 'tailscale serve' allow self-hosted apps to be securely exposed within the private network with real TLS certificates, keeping them off the public internet entirely.

0
ProgrammingDEV Community ·

C/C++ vs. Python Threads: Key Difference in Process Lifetime Explained

A developer with a background in C and C++ has highlighted a crucial behavioral difference in how Python handles threads compared to lower-level languages. In C and C++, a process terminates immediately when main() returns or exit() is called, even if other threads are still running, requiring explicit joins to prevent premature shutdown. Python, by contrast, implicitly waits for all non-daemon threads to finish before the process exits, eliminating the need for manual joins in most cases. Java shares Python's approach, while Go and Rust follow the C/C++ model. The author notes this distinction can catch experienced C/C++ programmers off guard when they first work with Python threading.