POST api/BiometricUsageData/LicenseInfo
Request Information
Body Parameters
CustomerKeyModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerKey": "sample string 1"
}
application/xml, text/xml
Sample:
<CustomerKeyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BioPluginCloudAPI.Models"> <CustomerKey>sample string 1</CustomerKey> </CustomerKeyModel>
Response Information
BioPluginLicensePackage| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| NumOfEnroll | integer |
None. |
|
| CallsPerHour | integer |
None. |
|
| CallsPerDay | integer |
None. |
|
| CallsPerMonth | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"NumOfEnroll": 2,
"CallsPerHour": 3,
"CallsPerDay": 4,
"CallsPerMonth": 5
}
application/xml, text/xml
Sample:
<BioPluginLicensePackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BioPluginCloudAPI.Models"> <CallsPerDay>4</CallsPerDay> <CallsPerHour>3</CallsPerHour> <CallsPerMonth>5</CallsPerMonth> <Name>sample string 1</Name> <NumOfEnroll>2</NumOfEnroll> </BioPluginLicensePackage>