CRUD API service
Problem statement:
A mobile, web, or device application has a requirement to perform create, read, update, and delete (CRUD) operations against a specific resource (for example, orders or customers). As the functionality is accessed from multiple channels, applications, and devices, a web API represents the best way to expose such a functionality.
Solution:
A CRUD API service pattern consists of an API gateway acting as a proxy (pass through) to a single service that implements all CRUD operations against a single database (relational or non-relational). Because a single service performs all operations, it can be relatively straightforward and simple to implement.
However, to avoid implementing capabilities such as authorization, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access