GET api/EWManager/QuertAllLicenseInfo?personId={personId}&limit={limit}&skip={skip}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| personId | string |
Required |
|
| limit | integer |
Required |
|
| skip | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LicenseInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Index | decimal number |
None. |
|
| CreateTime | string |
None. |
|
| Code | string |
None. |
|
| EndTime | string |
None. |
|
| Name | string |
None. |
|
| LicenseId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Index": 1.1,
"CreateTime": "sample string 2",
"Code": "sample string 3",
"EndTime": "sample string 4",
"Name": "sample string 5",
"LicenseId": "sample string 6"
},
{
"Index": 1.1,
"CreateTime": "sample string 2",
"Code": "sample string 3",
"EndTime": "sample string 4",
"Name": "sample string 5",
"LicenseId": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfLicenseInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EWManager.Acessor">
<LicenseInfo>
<Code>sample string 3</Code>
<CreateTime>sample string 2</CreateTime>
<EndTime>sample string 4</EndTime>
<Index>1.1</Index>
<LicenseId>sample string 6</LicenseId>
<Name>sample string 5</Name>
</LicenseInfo>
<LicenseInfo>
<Code>sample string 3</Code>
<CreateTime>sample string 2</CreateTime>
<EndTime>sample string 4</EndTime>
<Index>1.1</Index>
<LicenseId>sample string 6</LicenseId>
<Name>sample string 5</Name>
</LicenseInfo>
</ArrayOfLicenseInfo>