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": "6d4b56fe-4e6f-405f-b6fe-0b28de157f7f"
  }
}
'
{
  "id": "5feaa639-66d9-4d51-a6a0-0abbe08a033d",
  "object": "activation",
  "counted": true,
  "name": "My Site",
  "fingerprint": "mysite.com",
  "license": "6d4b56fe-4e6f-405f-b6fe-0b28de157f7f",
  "created_at": 1770234879,
  "updated_at": 1770234879
}

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.