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

VariableDescription
serial-numberserial number

Parameters

ParameterDescription
app_idAn app_id that has read permission
api_keyAn api_key that has read permission
sku_numberSKU number
nameName of the user (optional)
emailEmail 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
  }
}