Commit 33cabdb0 authored by Patricio Bruna's avatar Patricio Bruna

Fixed README

parent f20afe48
...@@ -19,6 +19,7 @@ zimbraApi.getAllDomains(function(data, err){ ...@@ -19,6 +19,7 @@ zimbraApi.getAllDomains(function(data, err){
data.forEach(function(v){ data.forEach(function(v){
console.log(v.id + ' ' + v.name); console.log(v.id + ' ' + v.name);
}) })
});
``` ```
Here you see how to get basic information using a function like `getAllAccounts`: Here you see how to get basic information using a function like `getAllAccounts`:
...@@ -29,6 +30,7 @@ zimbraApi.getAllAccounts(function(data, err){ ...@@ -29,6 +30,7 @@ zimbraApi.getAllAccounts(function(data, err){
data.forEach(function(v){ data.forEach(function(v){
console.log(v.id + ' ' + v.name); console.log(v.id + ' ' + v.name);
}) })
});
``` ```
## TODOS: ## TODOS:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment