PHP code example of gento-arg / oca-php-api
1. Go to this page and download the library: Download gento-arg/oca-php-api library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gento-arg / oca-php-api example snippets
### Unicamente para tarifar un envío requiere un número de operativa y CUIT válidos,
### autorizados por OCA para operar (at. al cliente 0800-999-7700).
### Otros métodos no requieren esta autorización
$oca = new Oca($cuit = '20-12345678-7', $operativa = 12345);
$price = $oca->tarifarEnvioCorporativo(1, 1, 1640, 1006, 1, 0);
$envios = $oca->listEnvios($fechaDesde = '08-08-2015', $fechaHasta = '13-08-2015');
print_r ($envios);
print_r ($price);