Add License Keys To Solution Using POST
Only licenseKey needs to be populated in the request object. Other fields will be set as a part of response.
Request
URI
POST
https://{api_host}/api/solutions/{solutionId}/licenses
COPY
Path Parameters
string
solutionId
Required
The id of the solution
Request Body
The license key to add
solution-licenses of type(s) application/json
Required
{
"solutionLicenses": [
{
"capacity": "string",
"edition": "string",
"expirationDate": 0,
"id": "string",
"licenseKey": "string",
"links": [
{
"description": "string",
"href": "string",
"name": "string",
"rel": "string"
}
],
"usage": "string"
}
]
}
Responses
201
The object containing the details of the license
Returns solution-licenses of type(s) application/json
{
"solutionLicenses": [
{
"capacity": "string",
"edition": "string",
"expirationDate": 0,
"id": "string",
"licenseKey": "string",
"links": [
{
"description": "string",
"href": "string",
"name": "string",
"rel": "string"
}
],
"usage": "string"
}
]
}