Zendesk\API\Resources\Core\PushNotificationDevices::deleteMany PHP Method

deleteMany() public method

Specify the devices as an array of mobile device tokens.
public deleteMany ( array $params = [] ) : null
$params array
return null
    public function deleteMany(array $params = [])
    {
        if (!isset($params['tokens']) || !is_array($params['tokens'])) {
            throw new MissingParametersException(__METHOD__, ['tokens']);
        }
        $postData = [$this->objectNamePlural => $params['tokens']];
        return $this->client->post($this->getRoute(__FUNCTION__), $postData);
    }
PushNotificationDevices