GET api/Secretaria/GetRotasInternas

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RotaInternaDto
NameDescriptionTypeAdditional information
nome

string

None.

path

string

None.

key

integer

None.

id

integer

None.

isNew

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "nome": "sample string 1",
    "path": "sample string 2",
    "key": 3,
    "id": 3,
    "isNew": true
  },
  {
    "nome": "sample string 1",
    "path": "sample string 2",
    "key": 3,
    "id": 3,
    "isNew": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfRotaInternaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CidConnectada.Webapi.Models.Banners">
  <RotaInternaDto>
    <isNew xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">true</isNew>
    <key xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">3</key>
    <nome>sample string 1</nome>
    <path>sample string 2</path>
  </RotaInternaDto>
  <RotaInternaDto>
    <isNew xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">true</isNew>
    <key xmlns="http://schemas.datacontract.org/2004/07/Zenite.Pi.Web.Models">3</key>
    <nome>sample string 1</nome>
    <path>sample string 2</path>
  </RotaInternaDto>
</ArrayOfRotaInternaDto>