We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something strange happening on Mautic version 3.3.3 and API version 3.0 Edit a contact method is not working. I have this
$data = array( 'cancellation_date' =>date('Y-m-d'), 'acc_cancelled_flag' => 1 ); $initAuth = new ApiAuth(); $auth = $initAuth->newAuth(mauticConnection(), 'BasicAuth'); $timeout = 10; $auth->setCurlTimeout($timeout); $api = new MauticApi(); $contactApi = $api->newApi("contacts", $auth, checkMauticUrl()); /*Get User*/ $contacts = $contactApi->getList("email:$email"); //dd($contacts); if (!empty($contacts['contacts'])) { $user_id = array_key_first($contacts['contacts']); /*Update User Details*/ $response = $contactApi->edit($user_id, $data, false); }
This is the method that I am using but its not udpating those two columns. Does somebody has solution?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered:
What is your $response?
$response
Sorry, something went wrong.
No branches or pull requests
Something strange happening on Mautic version 3.3.3 and API version 3.0
Edit a contact method is not working. I have this
This is the method that I am using but its not udpating those two columns. Does somebody has solution?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: