Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/developaul/bootcamp-week1-restify-basic
BASIC REST SERVER: Node - Restify
https://github.com/developaul/bootcamp-week1-restify-basic
Last synced: about 1 month ago
JSON representation
BASIC REST SERVER: Node - Restify
- Host: GitHub
- URL: https://github.com/developaul/bootcamp-week1-restify-basic
- Owner: developaul
- Created: 2021-03-22T03:38:26.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T07:01:38.000Z (almost 4 years ago)
- Last Synced: 2023-08-02T23:59:07.427Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Endpoints
## basePath: {{url}}/api
### profiles
```
basePath/profiles -> Get profiles
``````
basePath/profiles/full/12 -> Get full profile by id
``````
basePath/profiles/basic/12 -> Get basic profile by id
``````
basePath/profiles/info/12 -> Get info profile by id```
### search
```
basePath/search/profile/name/Anita -> Search profiles by name
``````
basePath/search/profile/dni/1830177 -> Search profiles by dni
``````
basePath/search/profile/dni/2021-03-21T10:39:01.411Z -> Search profiles by created
```