Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```