Hi, When I am trying to get the contact using the email list id in php, I got some fatal error. "Fatal error: Uncaught Ctct\Exceptions\CtctException: Bad Request in /html/membersthrive/constantcontact-api/src/Ctct/Services/BaseService.php:100 Stack trace: #0 /html/membersthrive/constantcontact-api/src/Ctct/Services/ContactService.php(67)" My Code is: $params = array("limit" => 500, "status" => 'ACTIVE'); $listId = '1565890233'; $contacts = $cc->contactService->getContactsFromList($accessToken, $listId, $params); I don't know what wrong I did. Please help me to fix this issue. Thank you.
... View more