// Login
[POST] /login {username, password}
[POST] /login/forgot {username}
[DELETE] /login/{auth}

// Dashboard
[GET] /{auth}/dashboard ? {start?|end?} // Ex: {uuid}/dashboard?start={datetime}&end={datetime}
[GET] /{auth}/menu/{position} // Ex: {uuid}/menu/main

// Usuários (users)
[GET] /{auth}/users/profile

// Empresas (companies)
[POST] /{auth}/companies {company_name, fancyname, email, phone, cnpj, category, obs} 
[GET] /{auth}/companies/filter ? {cnpj|fancyname|categories}
[GET] /{auth}/companies[/{uuid}]
[PUT] /{auth}/companies/{uuid} {company_name, fancyname, email, phone, cnpj, category, obs} 
[PATCH] /{auth}/companies/{uuid}/{block|unblock|delete}
