Hello, It's not Vince but Filip Also if at any time you are looking for a single contact ID you would use the getContact. getContact method requires contact ID so it cannot be used to get a single contact ID: /**
* Get contact details for a specific contact
* @param string $accessToken - Constant Contact OAuth2 access token
* @param int $contactId - Unique contact id
* @return Contact
* @throws CtctException
*/
public function getContact($accessToken, $contactId) { To get contact ID: $contact = $this->cc->contactService->getContacts($this->token, ["email" => Input::get('email')]);
$contact->results[0]->id
... View more