Skip to content

tiblazy/projeto-final-m3-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Projeto Final M3 Grupo 2

Base Url:

https://projeto-final-m3.herokuapp.com/

Rotas sem TOKEN

Listar mesas

GET /tables

Buscar mesa

GET /tables?tablename_like=:tablename

Limitar página

GET /tables?_page=:page&_limit=:maxTables

Registrar

POST /register

Body:

{
    "email": "[email protected]",
    "password": "kenzinho123",
    "username": "kenzinho",
    "myTables": []
}

id automático pelo json-server

Logar

POST /login

Body:

{
   "email": "[email protected]",
   "password": "kenzinho123",
}

Rotas com TOKEN

Headers:

{
    "Authorization": "Bearer token"
}

Listar usuários

GET /users

Listar mesas que participa

GET /users/:id?_embed=tables GET /users?id=:id&tables

Buscar usuário

GET /users?username_like=:username

Criar nova mesa

POST => /tables

Body:

{
   "tablename": "Kenzie",
   "owner": "id",
   "system": "D&D",
   "invite": "",
   "password": "",
   "maxParticipants": 10,
   "participants": []
}

id automático pelo json-server

Deletar mesa

DELETE /tables/id

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published