POST api/License
Request Information
URI Parameters
None.
Body Parameters
UploadLicensesCount| Name | Description | Type | Additional information |
|---|---|---|---|
| Item | string |
None. |
|
| Secret | string |
None. |
|
| OrgId | globally unique identifier |
None. |
|
| Items | Collection of UploadLicensesCountItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"Secret": "sample string 1",
"OrgId": "2e463fe6-507e-48fb-b471-145dd0946989",
"Items": [
{
"Code": 1,
"Count": 2
},
{
"Code": 1,
"Count": 2
}
]
}
text/html
Sample:
{"Secret":"sample string 1","OrgId":"2e463fe6-507e-48fb-b471-145dd0946989","Items":[{"Code":1,"Count":2},{"Code":1,"Count":2}]}
application/xml, text/xml
Sample:
<UploadLicensesCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Herke.Licensing.Model.Request">
<Items>
<UploadLicensesCountItem>
<Code>1</Code>
<Count>2</Count>
</UploadLicensesCountItem>
<UploadLicensesCountItem>
<Code>1</Code>
<Count>2</Count>
</UploadLicensesCountItem>
</Items>
<OrgId>2e463fe6-507e-48fb-b471-145dd0946989</OrgId>
<Secret>sample string 1</Secret>
</UploadLicensesCount>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.