PHP code example of oimenu / oimenu-php
1. Go to this page and download the library: Download oimenu/oimenu-php 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/ */
oimenu / oimenu-php example snippets
// definir o token de acesso
$oimenuClient = new \OiMenu\Client('OIMENU-TOKEN');
// listar pedidos pendentes
$response = $oimenuClient->getAllOrders();
if ($response->success) {
print_r($response->data);
} else {
echo $response->message . PHP_EOL;
$response->debug();
}
// cadastrar um produto do ERP
$response = $oimenuClient->createProduct([
'code' => '1006',
'name' => 'Chopp da Casa 600ml',
'price' => '6.50',
'extra_fields' => [
'any_field' => 1
]
]);
if ($response->success) {
echo 'O produto foi criado com sucesso.' . PHP_EOL;
} else {
echo $response->message . PHP_EOL;
$response->debug();
}
bash
composer