This document discusses the challenges of integrating low-code/no-code platforms with external APIs and proposes some patterns and solutions. It notes that real applications often need to connect to APIs for transactions, data, notifications etc. Directly connecting low-code products to many different APIs can create a poor developer experience. The document recommends using a facade pattern to abstract the APIs and define a single interface. It also suggests defensive coding practices like validation, retries and circuit breakers when working with unpredictable external APIs. Fully leveraging serverless architectures and functions is presented as enabling true DevOps for low-code products by handling data, APIs and events without requiring complex backend code.