createLicenseToken method

Future<CreateLicenseTokenResponse?> createLicenseToken(
  1. String account,
  2. String license, {
  3. CreateLicenseTokenRequest? createLicenseTokenRequest,
})

Generate a license token

Create a license token for a license. A license token has permission to activate and deactivate machines for the given license. An alternative to Token Authentication is License Authentication. Typically, we recommend using License Authentication where possible, as it very much simplifies an integration.

Parameters:

  • String account (required): The identifier (UUID) or slug of your Keygen account.

  • String license (required): The identifier (UUID) or key of the license the token is for.

  • CreateLicenseTokenRequest createLicenseTokenRequest:

Implementation

Future<CreateLicenseTokenResponse?> createLicenseToken(String account, String license, { CreateLicenseTokenRequest? createLicenseTokenRequest, }) async {
  final response = await createLicenseTokenWithHttpInfo(account, license,  createLicenseTokenRequest: createLicenseTokenRequest, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'CreateLicenseTokenResponse',) as CreateLicenseTokenResponse;

  }
  return null;
}