Build Endpoints
We will learn how to build endpoints so that the API can access users' data.
We'll cover the following...
It’s time to make endpoints for the api
. Endpoints are the touchpoints for requests and responses through an API. In an API, the database is not directly exposed to the user. The user can only access data through specific requests using these endpoints.
We will discuss controllers
and their functionality later in this lesson. For ...