> For the complete documentation index, see [llms.txt](https://licensex.gitbook.io/licensex/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://licensex.gitbook.io/licensex/api-endpoints/license-create.md).

# /license/create

## Example request:

<pre class="language-json"><code class="lang-json">{
    "apiKey": string,
    "product": string,
<strong>    "userId": string
</strong>}
</code></pre>

## Responses

### 200 - License created

```json
{
  "success": true,
  "message": "License created",
  "code": 200,
  "licenseKey": string,
  "userId": string,
  "product": string,
  "email": string,
  "maxIps": integer
}
```

### 404 - Missing Parameters

```json
{
  "success": false,
  "message": "Missing parameters",
  "code": 404
}
```

### 401 - Invalid API Key

```json
{
  "success": false,
  "message": "Invalid API key",
  "code": 401
}

```
