/home/techb158/immovalet.com/vendor/mollie/mollie-api-php/examples/profiles
NameSizeModeActions
create-profile.php8080644editdlrm
delete-profile.php5700644editdlrm
list-profiles.php7360644editdlrm
update-profile.php9050644editdlrm
Edit: /home/techb158/immovalet.com/vendor/mollie/mollie-api-php/examples/profiles/update-profile.php (905B)
profiles->get("pfl_eA4MSz7Bvy"); /** * Profile fields that can be updated. * * @See https://docs.mollie.com/reference/v2/profiles-api/update-profile */ $profile->name = "Mollie B.V."; $profile->website = 'www.mollie.com'; $profile->email = 'info@mollie.com'; $profile->phone = '0612345670'; $profile->categoryCode = 5399; $profile->update(); echo "

Profile updated: " . htmlspecialchars($profile->name) . "

"; } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "

API call failed: " . htmlspecialchars($e->getMessage()) . "

"; }