Returns a list of license orders.
Request Address
http://api.intelliprotector.com:8000/LicenseOrder/List
https://api.intelliprotector.com:9000/LicenseOrder/List
Request Parameters
| Name |
Type |
Description |
| AccessInfo |
Object |
The AccessInfo object which contains access information |
| PageRequest |
Object |
The PageRequest object which describe page settings |
| OrdersSearch |
Object |
The LicenseOrdersSearch object which has all search parameters |
* Required parameters are marked with
bold font.
Example Request
{
"PageRequest": {
"Index": 1,
"Size": 1
},
"OrdersSearch": {
"ProjectId": "333333333333333333333333333333333"
},
"AccessInfo": {
"VendorId": "0000000000000000000000000000000",
"WebApiKey": "2222222222222222222222222222222"
}
}
Example Response
{
"PageResponse": {
"Index": 1,
"Size": 1,
"Pages": 120,
"Records": 120
},
"LicenseOrders": [
{
"OrderId": "0b73aa4ccbdae41192ae005056c00008",
"ProductName": "User-friendly product name 1",
"ProjectName": "Project 1",
"DateCreated": "2015-04-04T13:06:00",
"OrderNumber": "ITP-DLOA-2627H5EF-65A3469B-AA4BH2K6-7B483BK8-55",
"Status": "Active",
"Company": "",
"Customer": "customer name",
"Email": "customer@email123123email123.com",
"Address": "",
"City": "",
"State": "",
"Zip": "",
"Country": "",
"Phone": "",
"Comments": "",
"Price": 0.0,
"Codes": 1,
}
],
"ResponseDetails": {
"ResponseStatus": "Success",
"Message": "Success"
}
}
Response Parameters
| Name |
Description |
| PageResponse |
The PageResponse object which represent page settings |
| LicenseOrders |
An array of LicenseOrderInfo objects which describe orders settings |
| ResponseDetails |
The ResponseDetails object with the status of a Web API call |