1. Go to this page and download the library: Download skaisser/organizze 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/ */
skaisser / organizze example snippets
kaisser\Organizze\Adapter\GuzzleHttpAdapter;
use Skaisser\Organizze\Organizze;
// Você precisará do seu e-mail e Chave Api para consumir esta api
$adaptador = new GuzzleHttpAdapter('[email protected]', 'chave_api_gerada_pelo_organizze');
// Vamos criar o objeto Organizze com o Adaptador selecionado.
$organizze = new Organizze($adaptador);
// ...
// Pegar uma transação especifica por id
$transaction = $organizze->transaction()->getById(:id);
// Criar uma nova Transação | Veja Skaisser/Organizze/Entity/Transaction para parametros disponiveis.
$transaction = $organizze->transaction()->create(array);
// Modificar uma Transação | Veja Skaisser/Organizze/Entity/Transaction para parametros disponiveis.
$account = $organizze->account()->update(:id, array);
// Pegar todas as Contas
$accounts = $organizze->account()->getAll();
// Pegar uma Conta por id
$account = $organizze->account()->getById(690486);
// Criar uma nova Conta | tipo disponivel -> Conta Corrente: checking, Conta Poupança: savings, Outros: other
$account = $organizze->account()->create(['name' => 'Banco Itau', 'description' => 'Ag 0123', 'type' => 'checking']);
// Modificar uma Conta | tipo disponivel -> Conta Corrente: checking, Conta Poupança: savings, Outros: other
$account = $organizze->account()->update(:id, array);
// ...
// retorna todas as categorias
$category = $organizze->category()->getAll();
// Pegar uma categoria por id
$category = $organizze->category()->getById(:id);
// Excluir uma Categoria
$category = $organizze->category()->deleteById(:id);
// Criar uma nova Categoria
$category = $organizze->category()->create(['name' => 'Nome Categoria']);
// Criar uma nova SubCategoria [REQUER ORGANIZZE MAIS OU EMPRESARIAL]
$category = $organizze->category()->create(['name' => 'Nome Subcategoria', 'parent_id' => 'idCategoriaPai']);
// Atualize uma Categoria
$category = $organizze->category()->update(:idCategoria, ['name' => 'Novo Nome']);
// Atualize uma Subcategoria (alterando a categoria pai)
$category = $organizze->category()->update(:idCategoria, ['parent_id' => 'idCategoriaPai']);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.