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": "1e6424e9-c779-4792-b0b3-d66b05068c53"
  }
}
'
{
  "id": "c7b8dfc5-60f8-4fdd-9212-139e64b7d88a",
  "object": "activation",
  "counted": true,
  "name": "My Site",
  "fingerprint": "mysite.com",
  "license": "1e6424e9-c779-4792-b0b3-d66b05068c53",
  "created_at": 1778010905,
  "updated_at": 1778010905
}

Documentation Index

Fetch the complete documentation index at: https://developer.surecart.com/llms.txt

Use this file to discover all available pages before exploring further.

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.