Book Image

Enterprise API Management

By : Luis Weir
Book Image

Enterprise API Management

By: Luis Weir

Overview of this book

APIs are the cornerstone of modern, agile enterprise systems. They enable access to enterprise services from a wide variety of devices, act as a platform for innovation, and open completely new revenue streams. Enterprise API Management shows how to define the right architecture, implement the right patterns, and define the right organization model for business-driven APIs. Drawing on his experience of developing API and microservice strategies for some of the world's largest companies, Luis Weir explains how APIs deliver value across an enterprise. The book explores the architectural decisions, implementation patterns, and management practices for successful enterprise APIs, as well as providing clear, actionable advice on choosing and executing the right API strategy in your enterprise. With a relentless focus on creating business value, Luis Weir reveals an effective method for planning, building, and running business products and services with APIs.
Table of Contents (9 chapters)

REST

REST is an architectural style for building web APIs. REST is not a standard per se and is perhaps better defined as a set of constraints (six to be exact) that you should adhere to when defining and/or implementing REST-based APIs.

REST was first introduced by Roy Fielding in his 2000 PhD dissertation titled Architectural Styles and the Design of Network-based Software Architectures at the University of California Irvine.

Although the first (or at least the first publicly known) REST API was launched by eBay in the same year as Fielding's dissertation (refer to https://thehistoryoftheweb.com/ebay-apis-connected-web), the adoption of REST and its main alternative (SOAP/WSDL Web Services) really only gained traction toward the end of 2004 when Flickr first launched its public REST API, shortly followed by Facebook and Twitter.

Of relevance is the fact that while working...