For root users: Post LicenseRequest via API Returns (Task)
Overview of PostLicenseRequestStubAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to create the FIT package in |
| lrs | The LicenseRequestStub to post |
Example in C#
// Returns: nothing
await client.PostLicenseRequestStubAsync(FolderInfo folder, LicenseRequestStub lrs);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/licenses/manual \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.LicenseRequestStub, Feenics.Keep.WebApi.Model",
"IndustryVertical":"Automobile",
"PurchaseOrder":"Buy a car"
"RequestingComponents": [
{
"$type": "Feenics.Keep.WebApi.Model.RequestingComponent, Feenics.Keep.WebApi.Model",
"PrivateProductCode": "ENTERPRISEInstance",
"ValueAdded": 1
}
],
"AddedBy": "Admin",
"MetadataBson": null
}'