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": "225b30aa-eccc-4acd-b5da-3a9b61b75d57",
"Items": [
{
"Code": 1,
"Count": 2
},
{
"Code": 1,
"Count": 2
}
]
}
text/html
Sample:
{"Secret":"sample string 1","OrgId":"225b30aa-eccc-4acd-b5da-3a9b61b75d57","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>225b30aa-eccc-4acd-b5da-3a9b61b75d57</OrgId>
<Secret>sample string 1</Secret>
</UploadLicensesCount>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.