-
Notifications
You must be signed in to change notification settings - Fork 9
Produtos
Bruno Barreto edited this page May 15, 2017
·
6 revisions
$retorno = $skyhub->products()->get($page, $per_page);
$retorno = $skyhub->products(102)->getBySku();
$retorno = $skyhub->products()->insert([
'sku'=>'TESTEABC',
'description'=>'Produto de teste da API',
'name'=>'Teste de produto'
]);
$retorno = $skyhub->products($sku)->update([
'name'=>'Mesa Lateral Paleta 40x40 Vermelha - TESTE 2'
]);
$retorno = $skyhub->products($sku)->delete();
$retorno = $skyhub->products()->urls();
$retorno = $skyhub->products()->urls('Magento');