POST api/Symbols/Edit
Request Information
URI Parameters
None.
Body Parameters
SymbolsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| DrawDate | string |
None. |
|
| DrawCode | string |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"DrawDate": "sample string 2",
"DrawCode": "sample string 3",
"CreatedBy": 4,
"UpdatedBy": 5
}
application/xml, text/xml
Sample:
<SymbolsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LuckyLotterCoreApp.API.Models"> <CreatedBy>4</CreatedBy> <DrawCode>sample string 3</DrawCode> <DrawDate>sample string 2</DrawDate> <ID>1</ID> <UpdatedBy>5</UpdatedBy> </SymbolsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Message | string |
None. |
|
| Time | string |
None. |
|
| Value | Object |
None. |
|
| ListValue | Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Message": "sample string 2",
"Time": "sample string 3",
"Value": {},
"ListValue": [
{},
{}
]
}
application/xml, text/xml
Sample:
<ResponseObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LuckyLotter.Admin.Lib">
<Code>sample string 1</Code>
<ListValue xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</ListValue>
<Message>sample string 2</Message>
<Time>sample string 3</Time>
<Value />
</ResponseObject>