Пример #1
0
 /**
  *  Get full details for a ContactList
  *  @param string $url - address to a list
  *  @return ContactList
  */
 public function getListDetails($url)
 {
     $response = $this->CTCTRequest->makeRequest($url, 'GET');
     $parsedResponse = simplexml_load_string($response['xml']);
     return new ContactList(ContactList::createStruct($parsedResponse));
 }