v1

latestOpenAPI 3.0.22026-07-174617345.8 KB
Agent Licenses

Create a new license for an agent

Creates a new license for a specific agent.

post/api/v1/projects/{projectId}/licenses

Path parameters

projectIdinteger required

The unique identifier of the agent (formerly known as project).

Request body

namestring

The name of the license

Example request

{
  "name": "My License"
}

Response

Agent license

status'error' | 'success'

The status of the response

Example response

{
  "status": "success",
  "data": {
    "license": {
      "name": "My License",
      "key": "123e4567-e89b-12d3-a456-426614174000",
      "project_id": 7,
      "created_at": "2021-01-01 00:00:00",
      "updated_at": "2021-01-01 00:00:00"
    },
    "licenseKey": "123e4567-e89b-12d3-a456-426614174000"
  }
}