Skip to content

ShyNotes API, is the behind of shyNotes app. Made using Deno, TS and a lot of coffee.

Notifications You must be signed in to change notification settings

Jphn/shynotes-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ShyNotes (API)

  1. Stack
  2. API

Stack

Core

  • Deno
  • TypeScript
  • MongoDB

Libs

API

Criar uma nota

  REQUEST: POST /notes
  BODY: JSON {
    name,
    content
  }
Parâmetro Tipo Descrição
name string Obrigatório. Nome da nota.
content string Obrigatório. Conteúdo da nota.

Pegar uma nota

  REQUEST: GET /notes/{name}
  RESPONSE: JSON {
    name,
    content
  }
Parâmetro Tipo Descrição
name string Obrigatório. Nome da nota.
content string Obrigatório. Conteúdo da nota.

Retornará um JSON com os valores da nota.

Atualizar uma nota

  REQUEST: PUT /notes/{name}
  BODY: JSON { content }
Parâmetro Tipo Descrição
name string Obrigatório. Nome da nota.
content string Obrigatório. Conteúdo da nota.

Apagar uma nota

  REQUEST: DELETE /notes/{name}
Parâmetro Tipo Descrição
name string Obrigatório. Nome da nota.

Author

@João Pedro Holanda Neves

About

ShyNotes API, is the behind of shyNotes app. Made using Deno, TS and a lot of coffee.

Topics

Resources

Stars

Watchers

Forks