this.get('/contacts'); this.get('/contacts', 'users'); // define which resource to use // Single objects this.get('/contacts/:id'); // POST shorthands this.post('/contacts'); // PUT shorthands this.put('/contacts/:id'); DELETE shorthands this.del('/contacts/:id');