Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • Wiki Wiki
  • Project information
    • Project information
    • Activity
    • Labels
    • Planning hierarchy
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 52
    • Issues 52
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • CP - Planta
  • WikiWiki
  • Wiki
  • backend_persons

backend_persons · Changes

Page history
docs: docs authored Oct 19, 2024 by Rodrigo Oliveira Rosa's avatar Rodrigo Oliveira Rosa
Show whitespace changes
Inline Side-by-side
backend_persons.md 0 → 100644
View page @ e9b6d2ca
| [Home](home) | [**Escopo**](escopo) | [Processo](processo) | [Design/Mockups](design_mockups) | [Gerência](gerencia) | [Estudos](estudos) | [Arquitetura](arquitetura) | [Contratos](contratos) | [BD](banco_dados) | [Qualidade](qualidade) | [Configuração](configuracao) | [Instalação](instalacao) | [Instruções](instrucoes) | [Utilização](utilizacao) | [Analytics](Analytics) | [Infraestrutura](infraestrutura) | [Dicas](dicas) |
| :-------: | :---------------------: | :---------------: | :---------------------------: | :----------------: | :-------------: | :---------------------: | :-----------------: | :------------: | :-----------------: | :-------------------------: | :---------------------: | :---------------------: | :---------------------: | :-----------------: | :---------------------------: | :---------: |
# Persons - pessoas (fornecedor, cliente)
fields:
```js
id: number;
name: string;
type: Person_Type;
active: boolean;
```
endpoints:
## FindAll
GET http://localhost:3000/persons/
response:
```json
[
{
"id": 1,
"name": "Pedro Cabral",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
},
{
"id": 2,
"name": "Machado Assis",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
},
{
"id": 3,
"name": "Clarice Lispector",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
},
{
"id": 4,
"name": "Sebastião Costa",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
},
{
"id": 5,
"name": "Produtor Rural",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
},
{
"id": 6,
"name": "Ecologia na Veia",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
}
]
```
## FindById
GET http://localhost:3000/persons/2
response:
```json
{
"id": 2,
"name": "Machado Assis",
"active": true,
"created_at": "18/10/2024 00:09:25",
"updated_at": "18/10/2024 00:09:25"
}
```
## Create
POST http://localhost:3000/persons/
request:
```json
{
"name": "Fruteira do Ifood"
}
```
response:
```json
{
"id": 7,
"name": "Fruteira do Ifood",
"active": true,
"created_at": "19/10/2024 04:03:03",
"updated_at": "19/10/2024 04:03:03"
}
```
## Update
PATCH http://localhost:3000/persons/7
request:
![1729321540482](resources/images/backend/Contratosbackefront/1729321540482.png)
response:
```json
{
"id": 7,
"name": "Restaurante Nova Brécia",
"active": true,
"created_at": "19/10/2024 04:03:03",
"updated_at": "19/10/2024 04:05:18"
}
```
## Delete
DELETE http://localhost:3000/persons/7
response:
```json
{
"message": "Person with ID 7 deleted successfully"
}
```
## Reactivate
POST http://localhost:3000/persons/activate/7
response:
```json
{
"message": "Person ID 7 activated successfully"
}
```
Clone repository
  • Infraestrutura
  • Utilizando a wiki
    • adicionando imagens
    • escrevendo em markdown
    • wiki no editor de texto
  • analytics
  • arquitetura
  • backend_categories
  • backend_inicio
  • backend_persons
  • backend_production_order
  • backend_products
  • backend_qualidade
  • backend_settings
  • backend_stock
  • backend_stock_locations
View All Pages