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_categories

Last edited by ESKieroff Oct 19, 2024
Page history

backend_categories

Home Escopo Processo Design/Mockups Gerência Estudos Arquitetura Contratos BD Qualidade Configuração Instalação Instruções Utilização Analytics Infraestrutura Dicas

Categories - categorias

fields:

id: number;
description: string;
active: boolean;

endpoints:

FindAll

GET http://localhost:3000/categories/

response:

[
  {
    "id": 1,
    "description": "Premium",
    "active": true,
    "created_at": "18/10/2024 00:09:25",
    "updated_at": "18/10/2024 00:09:25"
  },
  {
    "id": 2,
    "description": "Importado",
    "active": true,
    "created_at": "18/10/2024 00:09:25",
    "updated_at": "18/10/2024 00:09:25"
  },
  {
    "id": 3,
    "description": "Nacional",
    "active": true,
    "created_at": "18/10/2024 00:09:25",
    "updated_at": "18/10/2024 00:09:25"
  },
  {
    "id": 4,
    "description": "Top Demais",
    "active": true,
    "created_at": "18/10/2024 00:09:25",
    "updated_at": "18/10/2024 00:09:25"
  },
  {
    "id": 5,
    "description": "Promoção",
    "active": true,
    "created_at": "18/10/2024 00:09:25",
    "updated_at": "18/10/2024 00:09:25"
  }
]

FindById

GET http://localhost:3000/categories/3

response:

{
  "id": 3,
  "description": "Nacional",
  "active": true,
  "created_at": "18/10/2024 00:09:25",
  "updated_at": "18/10/2024 00:09:25"
}

Create

POST http://localhost:3000/categories/

request:

{
  "description": "Hortifruti"
}

response:

{
  "id": 6,
  "description": "Hortifruti",
  "active": true,
  "created_at": "19/10/2024 02:59:10",
  "updated_at": "19/10/2024 02:59:10"
}

Update

PATCH http://localhost:3000/categories/6

request: request

response:

{
  "id": 6,
  "description": "ALTEREI A DESCRIÇÃO",
  "active": true,
  "created_at": "19/10/2024 02:59:10",
  "updated_at": "19/10/2024 03:00:12"
}

Delete (inactivate)

DELETE http://localhost:3000/categories/6

response:

{
  "message": "Category with ID 6 deleted successfully"
}

Reactivate

POST http://localhost:3000/categories/activate/6

response:

{
  "message": "Category ID 6 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