POST api/Values?itemCode={itemCode}&gestLotto={gestLotto}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
itemCode

string

Required

gestLotto

boolean

Required

Body Parameters

ArtLotto
NameDescriptionTypeAdditional information
lotto

string

None.

idInv

string

None.

Request Formats

application/json, text/json

Sample:
{
  "lotto": "sample string 1",
  "idInv": "sample string 2"
}

text/html

Sample:
{"lotto":"sample string 1","idInv":"sample string 2"}

application/xml, text/xml

Sample:
<ArtLotto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <IdInv>sample string 2</IdInv>
  <Lotto>sample string 1</Lotto>
</ArtLotto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModel
NameDescriptionTypeAdditional information
Message

string

None.

Status

boolean

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": true,
  "Data": {}
}

text/html

Sample:
{"Message":"sample string 1","Status":true,"Data":{}}

application/xml, text/xml

Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <Data />
  <Message>sample string 1</Message>
  <Status>true</Status>
</ResponseModel>