xxxxxxxxxx
An API endpoint is a digital location where an API receives requests
about a specific resource on its server. In APIs, an endpoint is
typically a uniform resource locator (URL) that provides the location
of a resource on the server.
EX:
@GET /api/agents/{agent_id} //Returns data from the agent identified by *agent_id*
@PUT /api/agents/{agent_id} //Update data of the agent identified by *agent_id*
xxxxxxxxxx
@GET /api/agents/{agent_id} //Returns data from the agent identified by *agent_id*
@PUT /api/agents/{agent_id} //Update data of the agent identified by *agent_id*