POST api/Ticket/SearchAllTicketApproval
Request Information
URI Parameters
None.
Body Parameters
TicketSearchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TicketID | integer |
None. |
|
| FromDate | string |
None. |
|
| ToDate | string |
None. |
|
| Area | integer |
None. |
|
| RadioID | integer |
None. |
|
| MerchantID | integer |
None. |
|
| Status | string |
None. |
|
| ProviderID | integer |
None. |
|
| WareHouseID | integer |
None. |
|
| DrawlersIndex | string |
None. |
|
| CreatedBy | integer |
None. |
|
| ErrorReason | string |
None. |
|
| SetOfNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TicketID": 1,
"FromDate": "sample string 2",
"ToDate": "sample string 3",
"Area": 4,
"RadioID": 5,
"MerchantID": 6,
"Status": "sample string 7",
"ProviderID": 8,
"WareHouseID": 9,
"DrawlersIndex": "sample string 10",
"CreatedBy": 11,
"ErrorReason": "sample string 12",
"SetOfNumber": "sample string 13"
}
application/xml, text/xml
Sample:
<TicketSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LuckyLotterCoreApp.API.Models"> <Area>4</Area> <CreatedBy>11</CreatedBy> <DrawlersIndex>sample string 10</DrawlersIndex> <ErrorReason>sample string 12</ErrorReason> <FromDate>sample string 2</FromDate> <MerchantID>6</MerchantID> <ProviderID>8</ProviderID> <RadioID>5</RadioID> <SetOfNumber>sample string 13</SetOfNumber> <Status>sample string 7</Status> <TicketID>1</TicketID> <ToDate>sample string 3</ToDate> <WareHouseID>9</WareHouseID> </TicketSearchRequest>
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>