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": "1f157d00-d37a-41de-af1d-29f9faf07bb7"
  }
}
'
{
  "id": "ca1ffb15-c1a0-4127-8312-d0460472b743",
  "object": "activation",
  "counted": true,
  "name": "My Site",
  "fingerprint": "mysite.com",
  "license": "1f157d00-d37a-41de-af1d-29f9faf07bb7",
  "created_at": 1773903572,
  "updated_at": 1773903572
}

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.