License generator API Reference

redborder license generator API. The API can be used to request demo licenses valid for 30 days for a cluster. Only one license per cluster is allowed.

API Endpoint
http://licenses.redborder.com/api/v1
Contact: info@redborder.com
Schemes: http
Version: 0.4.0

Paths

Request demo license

POST /licenses

Request a demo license valid for 30 days for a cluster.

Request Example
{
  "cluster_uuid": "string",
  "organization_uuid": "string"
}

Success

default

Error

Response Example (200 OK)
{
  "license": "string"
}
Response Example (default )
{
  "message": "string"
}

Schema Definitions

LicenseRequest: object

cluster_uuid: string

UUID of the cluster where the license is allowed. One demo license per cluster is allwed.

organization_uuid: string

UUID of the organization where the license is allowed.

Example
{
  "cluster_uuid": "string",
  "organization_uuid": "string"
}

LicenseResponse: object

license: string

Base64 encoded license.

Example
{
  "license": "string"
}

ErrorResponse: object

message: string

Information about the error.

Example
{
  "message": "string"
}