GET api/FILMEs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FILME
NameDescriptionTypeAdditional information
COD_FILME

decimal number

None.

FILME1

string

None.

COD_CATEGORIA

decimal number

None.

DIRETOR

string

None.

VALOR_LOCACAO

decimal number

None.

RESERVADA

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "COD_FILME": 1.0,
    "FILME1": "sample string 2",
    "COD_CATEGORIA": 3.0,
    "DIRETOR": "sample string 4",
    "VALOR_LOCACAO": 5.1,
    "RESERVADA": "sample string 6"
  },
  {
    "COD_FILME": 1.0,
    "FILME1": "sample string 2",
    "COD_CATEGORIA": 3.0,
    "DIRETOR": "sample string 4",
    "VALOR_LOCACAO": 5.1,
    "RESERVADA": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFILME xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.NET.Controllers">
  <FILME>
    <COD_CATEGORIA>3</COD_CATEGORIA>
    <COD_FILME>1</COD_FILME>
    <DIRETOR>sample string 4</DIRETOR>
    <FILME1>sample string 2</FILME1>
    <RESERVADA>sample string 6</RESERVADA>
    <VALOR_LOCACAO>5.1</VALOR_LOCACAO>
  </FILME>
  <FILME>
    <COD_CATEGORIA>3</COD_CATEGORIA>
    <COD_FILME>1</COD_FILME>
    <DIRETOR>sample string 4</DIRETOR>
    <FILME1>sample string 2</FILME1>
    <RESERVADA>sample string 6</RESERVADA>
    <VALOR_LOCACAO>5.1</VALOR_LOCACAO>
  </FILME>
</ArrayOfFILME>