Please note that all pasted data is publicly available.
module.factory('UserDetailsFactory', function ($resource) { return $resource('http://api.local/user/:id', {}, { show: { method: 'GET' }, update: { method: 'PUT', params: {id: '@id'} }, delete: { method: 'DELETE', params: {id: '@id'} } }) });