Developer

activations - delete activations

Deletes an activation.

DELETE https://api.keyzy.io/v2/activations/{id}

Parameters

id

id of the activation object

Arguments

app_id

An app_id that has write permission

api_key

An api_key that has write permission

Returns

Success

{
    "message": "Activation successfully deleted."
}

Errors

You are not authorized
{
    "error": {
        "message": "You are not authorized!",
        "status_code": 401
    }
}

Activation does not exist

{
    "error": {
        "message": "Activation does not exist!",
        "status_code": 404
    }
}