Register Products — Submit Registration
Step 2 of 2 in the Register Products flow: registers an offline-distributed (dealer) license to a customer by setting their name and email. After this call the license is marked as registered and the customer appears as its owner.
To check a serial and preview the product before registering, start with Register Products — Check Serial.
PUT https://api.keyzy.io/v2/register-products/{serial-number}
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 |
| sku_number | SKU number |
| name | Name of the user (optional) |
| Email of the user (required) |
Returns
Success
{
"message": "Serial successfully registered."
}
Errors
You are not authorized
{
"error": {
"message": "You are not authorized!",
"status_code": 401
}
}
The email is missing or not valid
{
"error": {
"message": {
"email": ["The email field is required."]
},
"status_code": 422
}
}