Skip to main content
POST
/
v1
/
public
/
activations
Create
curl --request POST \
  --url https://{defaultHost}/v1/public/activations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "activation": {
    "name": "My Site",
    "fingerprint": "mysite.com",
    "license_id": "3a99f4ef-9b93-4803-87bf-e7f7e91dcf36"
  }
}
'
{
  "id": "07d09e85-8b26-4348-8c2c-127ab1c7ec1d",
  "object": "activation",
  "counted": true,
  "name": "My Site",
  "fingerprint": "mysite.com",
  "license": "3a99f4ef-9b93-4803-87bf-e7f7e91dcf36",
  "created_at": 1767909741,
  "updated_at": 1767909741
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
activation
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

fingerprint
string

The identifier for this activation. For example a URL, a machine fingerprint, etc.

name
string | null

The name of this activation.

counted
boolean

Whether or not this activation counts towards the activation limit.

license

Expandable – The associated license ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.