POST api/savedrawsale

Request Information

URI Parameters

None.

Body Parameters

Collection of TicketSale
NameDescriptionTypeAdditional information
Number_Id

integer

None.

Number

integer

None.

Amount

decimal number

None.

Price

decimal number

None.

Draw_Id

integer

None.

Vendor_Id

integer

None.

CustomerName

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Number_Id": 1,
    "Number": 2,
    "Amount": 3.0,
    "Price": 4.0,
    "Draw_Id": 5,
    "Vendor_Id": 6,
    "CustomerName": "sample string 7"
  },
  {
    "Number_Id": 1,
    "Number": 2,
    "Amount": 3.0,
    "Price": 4.0,
    "Draw_Id": 5,
    "Vendor_Id": 6,
    "CustomerName": "sample string 7"
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Request_Message
NameDescriptionTypeAdditional information
Code

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "Message": "sample string 2"
}