Home

Série 1

Páginas filhas
  • State

Versões comparadas

Chave

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

Esta entidade exibe informações sobre CADASTRO DE ESTADOS estados e suporta as seguintes operações: GET

...

Leitura de registro específico(GET):

localhost:8085/first/api/v1/State/AC

{

  "pk": "AC",

  "id": "AC",

  "description": "ACRE"

}

...

Leitura de registro com filtro (GET)

localhost:8085/first/api/v1/State?description=BAHIA

{

  "total": 1,

  "hasNext": false,

  "syncing": false,

  "lines": [

    {

      "pk": "BA",

      "id": "BA",

      "description": "BAHIA"

    }

  ]

}