Borrow Floating License
Borrows a floating cloud license.
Endpoint
Method:
POSTPath:
/api/v4/floating/borrowDescription: Borrows a floating cloud license.
Authentication
Required headers
Date(string) — RFC7231 GMT date stringAuthorization(string)
Optional headers
licensespring-tpm-signature(string) — TPM licensing signature and algorithmlicensespring-tpm-signature: algorithm="ES256",signature=""
Recommended headers
Accept: application/jsonContent-Type: application/json
Request
Body parameters
Required:
hardware_id(string)product(string)borrowed_until(string | null) — ISO 8601 UTC timestamp. Sendnullto usemax_borrow_time.
One of:
license_key(string)username+password(string)id_token(send access_token value) +customer_account_code(string)code+customer_account_code(string)
Optional:
license_id(number)bundle_code(string)sdk_ver(string)redirect_uri(string)
Schema
Request Body (TypeScript)
Response Body (TypeScript)
Examples
License Authorization Method
There are two types of product licenses based on how the client application authorizes itself to interact with a license:
Key-based product licenses: client interactions with the license have to be authorized using a license_key
User-based product licenses: the license has a corresponding "license user" instead of a license key. Client interactions with the license have to be authorized using a username and password
Errors
If an error occurs, the response will have an HTTP status code of 400 or higher, and the response body will contain an error description in the following format:
List of exceptions
missing_headers (400): Some headers are missing
missing_parameters (400): Some parameters are missing in the request: { params }.
unknown_product (400): Provided product was not found
license_not_found (400): License with the provided license user not found
license_not_active (400): The license is not active
license_not_enabled (400): The license is not enabled
license_borrow_not_allowed (400): License does not allow borrowing
borrow_until_not_valid (400): Borrow until field is not valid
device_not_found (400): An active device matching the hardware_id not found
blacklisted (400): This device is blacklisted
floating_not_available (400): No available slots for floating license
tpm_invalid_public_key (400): The TPM public key sent is not valid
tpm_signature_required (400): The TPM signature is missing from the header and TPM usage is enforced
tpm_signature_missmatch (400): The TPM signature/algorithm is not ES256 and the signature can't be verified against the TPM public key
Last updated
Was this helpful?