JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr * @license https://opensource.org/licenses/MIT MIT License * @link https://api.xendit.co */ use Xendit\Xendit; require 'vendor/autoload.php'; Xendit::setApiKey('SECRET_API_KEY'); $params = [ 'external_id' => 'external_123', 'type' => 'STATIC', 'callback_url' => 'https://webhook.site', 'amount' => 10000, ]; $created_qr_code = \Xendit\QRCode::create($params); var_dump($created_qr_code); $qr_code = \Xendit\QRCode::get('external_123'); var_dump($qr_code);