// GET api/<controller>/5
        public IDictionary <string, object> Get(string id)
        {
            if (CustomerKey == null)
            {
                throw new HttpResponseException(HttpStatusCode.Unauthorized);
            }

            if (Individual == null)
            {
                throw new HttpResponseException(HttpStatusCode.NotFound);
            }

            Dictionary <string, object> result = Individual.GetDataObjectDictionary(id);

            return(result);
        }