Skip to main content
Fetches a cursor-paginated list of all activation records for a specific license, ordered by most recent first. Each activation record contains detailed information about when and where the license was activated, including IP address, user agent, device identifier, and timestamp. This endpoint is useful for auditing license usage, tracking device activations, and debugging activation-related issues. The response includes pagination metadata and a summary of total, maximum, and remaining activations.

Path Parameters

string
required
The license key to retrieve activations for (e.g., ABC-123-XYZ-789)

Query Parameters

integer
default:"50"
Number of activation records to return per page (max 100)
string
Cursor for pagination. Use the next_cursor from the previous response.

Response

object

Use Cases

Audit Trail

Track all devices that have activated a license:

Device Management

Display activation history to customers:

Fraud Detection

Identify suspicious activation patterns:

Pagination

This endpoint uses cursor-based pagination for efficient traversal of large activation lists:

Notes

  • Activations are ordered by most recent first (created_at DESC)
  • Each activation is immutable and cannot be modified
  • Activation records persist even after a license is revoked
  • The device_identifier field is optional and may be null if not provided during activation
  • IP addresses and user agents are automatically captured during activation