List projects
Log in to add to favouritesList projects
Returns a list of the project resources for a Contensis instance.
list(): Promise<Project>[]
Returns
A Promise that will resolve with an array of Project objects.
Example
client.projects.list()
.then(result => {
console.log('API call result: ', result);
})
.catch(error => {
console.log('API call fetch error: ', error);
});