Returns a list of projects.
Request Address
http://api.intelliprotector.com:8000/Project/List
https://api.intelliprotector.com:9000/Project/List
Request Parameters
| Name |
Type |
Description |
| AccessInfo |
Object |
The AccessInfo object which contains access information |
| PageRequest |
Object |
The PageRequest object which describes page settings |
* Required parameters are marked with
bold font.
Example Request
{
"PageRequest": {
"Index": 1,
"Size": 2
},
"AccessInfo": {
"VendorId": "22222222222222222222222222222222",
"WebApiKey": "33333333333333333333333333333333"
}
}
Example Response
{
"PageResponse": {
"Index": 1,
"Size": 2,
"Pages": 2,
"Records": 4
},
"Projects": [
{
"ProjectName": "Project 1",
"ProductName": "User-friendly product name 1",
"ProjectId": "e56fb66dee4ee2119baec86000bd38b2",
"Created": "2010-12-25T00:00:00",
"Status": "Active"
},
{
"ProjectName": "Project 2",
"ProductName": "User-friendly product name2",
"ProjectId": "854bb27dee4ee2119baec86000bd38b2",
"Created": "2014-10-25T00:00:00",
"Status": "Active"
}
],
"ResponseDetails": {
"ResponseStatus": "Success",
"Message": "Success"
}
}
Response Parameters
| Name |
Description |
| PageResponse |
The PageResponse object which represent page settings |
| Projects |
The ProjectInfo array of objects with describe projects parameters |
| ResponseDetails |
The ResponseDetails object with the status of a Web API call |