diff --git a/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php b/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php index d27358f..0ae9292 100644 --- a/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php +++ b/cli/src/Command/Ventas/MedioPagos/Toku/Reset.php @@ -20,7 +20,7 @@ class Reset extends Command $venta_ids = $input->getOption('venta_ids'); $body = []; if (!empty($venta_ids)) { - $body = ['venta_ids' => explode('|', $input->getOption('venta_ids'))]; + $body = ['skips' => ['subscription' => explode('|', $venta_ids)]]; } $options = count($body) > 0 ? ['json' => $body] : []; $response = $this->client->delete($uri, $options);