Register Products
Gets if a license is suitable for register products. A license can be suitable for register products if the license has the offline distribution setting.
GET https://api.keyzy.io/v2/register-products/{serial-number}?app_id=XXXXXX&api_key=XXXXXXXXXXXXXXXXX
Variables
| Variable | Description |
|---|---|
| serial-number | serial number |
Parameters
| Parameter | Description |
|---|---|
| app_id | An app_id that has read permission |
| api_key | An api_key that has read permission |
Returns
Success
{
"data": [
{
"id": "int",
"dealer_id": "int",
"dealer_name": "string",
"sku_id": "int",
"sku_name": "string",
"sku_number": "string",
"sku_url": "string",
"image_url": "string",
"serial": "string",
"name": "string",
"email": "string",
"type": "perpetual|subscription|trial",
"start_at": "unix timestamp",
"end_at": "unix timestamp",
"registered": "bool",
"created_at": "timestamp",
"updated_at": "timestamp"
}
]
}
Errors
You are not authorized
{
"error": {
"message": "You are not authorized!",
"status_code": 401
}
}