PUT api/GasRepartoes
Request Information
URI Parameters
None.
Body Parameters
Collection of GasRepartoVerif| Name | Description | Type | Additional information | 
|---|---|---|---|
| autob | integer | None. | |
| numero | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "autob": 1,
    "numero": 1
  },
  {
    "autob": 1,
    "numero": 1
  }
]
        text/html
            Sample:
        
[{"autob":1,"numero":1},{"autob":1,"numero":1}]
        application/xml, text/xml
            Sample:
        
<ArrayOfGasRepartoVerif xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Controllers">
  <GasRepartoVerif>
    <autob>1</autob>
    <numero>1</numero>
  </GasRepartoVerif>
  <GasRepartoVerif>
    <autob>1</autob>
    <numero>1</numero>
  </GasRepartoVerif>
</ArrayOfGasRepartoVerif>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
Reply| Name | Description | Type | Additional information | 
|---|---|---|---|
| message | string | None. | |
| result | integer | None. | |
| data | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "message": "sample string 1",
  "result": 2,
  "data": {}
}
        text/html
            Sample:
        
{"message":"sample string 1","result":2,"data":{}}
        application/xml, text/xml
            Sample:
<Reply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.webapplications1.Models.WS"> <data /> <message>sample string 1</message> <result>2</result> </Reply>