The API system will search in your account for the lead subscribed under that specific email, and it will deduct the specified points from his or her profile.
| Type | Parameters | Values | 
| POST | cmd* | remove_points_from_lead | 
| POST | points* | integer | 
* Required fields Here is an example:
'lead' => [
    'email' => 'example@email.com'
],
'actions' => [
    '0' => [
        'cmd' => 'remove_points_from_lead',
        'points' => 1
    ]
]
Success message:
{
  "status": "Success",
  "message": "Points removed from lead",
  "type": "106"
}Error Cases:
| Type Number | Message | Cause | 
| 228 | Points is not a number | 
 | 
| 217 | Points cannot be empty | 
 | 
{
  "status": "Error",
  "message": "Points cannot be empty",
  "type": "217"
}