try
{
String listPersonAddress = apiRoot + "social/person/list";
String getResult = sendRequest(listPersonAddress, null);
ResponsePojo internal_responsePojo = ResponsePojo.fromApi(getResult, ResponsePojo.class);
ResponseObject internal_ro = internal_responsePojo.getResponse();
responseObject = shallowCopy(responseObject, internal_ro);
List<PersonPojo> people = null;
people = ApiManager.mapListFromApi((JsonElement)internal_responsePojo.getData(), PersonPojo.listType(), new PersonPojoApiMap());
return people;