Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightmarevco/api
Curso de Mastermind de Backend-API
https://github.com/nightmarevco/api
api-rest nodejs
Last synced: about 5 hours ago
JSON representation
Curso de Mastermind de Backend-API
- Host: GitHub
- URL: https://github.com/nightmarevco/api
- Owner: NightmareVCO
- Created: 2023-08-10T22:28:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-04T00:24:21.000Z (about 1 year ago)
- Last Synced: 2024-01-15T06:05:53.664Z (10 months ago)
- Topics: api-rest, nodejs
- Language: JavaScript
- Homepage: https://mastermind.ac/clusters/la-web-con-nodejs
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Pokemon
## Objetivo:
Definir un API para gestionar nuestro equipo Pokemon.
## Acciones:
- Identificarnos
- Añadir pokemon a nuestro equipo.
- Eliminar pokemon a nuestro equipo.
- Consultar información de nuestro equipo.
- Intercambiar el orden de nuestro equipo.### REST Design:
- Añadir pokemon: POST /team/pokemons
- Consultar equipo: GET /team
- Eliminar pokemon: DELETE /team/pokemons/:id
- Intercambiar el orden: PUT /team
- Sistema de credenciales.