Skip to main content
PATCH
/
v1
/
public
/
activations
/
{id}
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/public/activations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "activation": {
    "name": "New Activation Name"
  }
}
'
{
  "id": "d9eeb4b0-8a79-4030-ac94-0b64cfdf3352",
  "object": "activation",
  "counted": true,
  "name": "New Activation Name",
  "fingerprint": "example.com",
  "license": "269782b6-476d-46e8-a686-1b6100d9afe7",
  "created_at": 1770234880,
  "updated_at": 1770234880
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

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.