Home

Série 1

Páginas filhas
  • Warehouse

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Leitura de registro (GET):

http://localhost/first/api/v1/warehouse

Retorno:

{

  "total": 2,

  "hasNext": false,

  "syncing": false,

  "lines": [

    {

      "pk": "01",

      "id": "01",

      "description": "PRODUTO ACABADO",

      "active": "1"

    },

    {

      "pk": "02",

      "id": "02",

      "description": "MATERIA PRIMA",

      "active": "1"

    }

  ]

}

 

Inserção (POST):

http://localhost/first/api/v1/warehouse

Body:

    {

      "id": "99",

      "description": "Novo armazém",

      "active": "1"

    }

Retorno:

{

  "url": "/first/api/v1/warehouse/99",

  "id": "99"

}

Alteração (PUT):

http://localhost/first/api/v1/warehouse/99

Body:

    {

      "active": "2"

    }

Retorno

{

  "url": "/first/api/v1/warehouse/99",

  "id": "99"

}

 

Exclusão (DELETE):

http://localhost/first/api/v1/warehouse/99

Retorno

{

  "url": "/first/api/v1/warehouse/99",

  "id": "99"

}

...