HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/debout/debout.nl/vendor/mollie/mollie-api-php/examples/profiles/delete-profile.php
<?php
/*
 * Delete a profile via the Mollie API.
 */
try
{
    /*
     * Initialize the Mollie API library with your API key or OAuth access token.
     */
    require "../initialize_with_oauth.php";

    /**
     * Delete a profile via the profileId
     *
     * @See https://docs.mollie.com/reference/v2/profiles-api/delete-profile
     */
    $profile = $mollie->profiles->delete("pfl_v9hTwCvYqw");
    echo "<p>Profile deleted</p>";
}
catch (\Mollie\Api\Exceptions\ApiException $e)
{
    echo "<p>API call failed: " . htmlspecialchars($e->getMessage()) . "</p>";
}