GET api/ITNGetListeProduitsForm

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ITNProduitForm
NameDescriptionTypeAdditional information
IdProduit

integer

None.

Produit_Libelle

string

None.

IdTypeProduit

integer

None.

TypeProduit_Libelle

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdProduit": 1,
    "Produit_Libelle": "sample string 2",
    "IdTypeProduit": 3,
    "TypeProduit_Libelle": "sample string 4"
  },
  {
    "IdProduit": 1,
    "Produit_Libelle": "sample string 2",
    "IdTypeProduit": 3,
    "TypeProduit_Libelle": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfITNProduitForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api_cybervris.com.Models">
  <ITNProduitForm>
    <IdProduit>1</IdProduit>
    <IdTypeProduit>3</IdTypeProduit>
    <Produit_Libelle>sample string 2</Produit_Libelle>
    <TypeProduit_Libelle>sample string 4</TypeProduit_Libelle>
  </ITNProduitForm>
  <ITNProduitForm>
    <IdProduit>1</IdProduit>
    <IdTypeProduit>3</IdTypeProduit>
    <Produit_Libelle>sample string 2</Produit_Libelle>
    <TypeProduit_Libelle>sample string 4</TypeProduit_Libelle>
  </ITNProduitForm>
</ArrayOfITNProduitForm>