post https://api.pay-link.eu/v1.0/Design//
Note for NodeJS: You need to install the following modules:
npm i axios crypto-js qs
Response
Note for NodeJS: You need to install the following modules:
npm i axios crypto-js qs
xxxxxxxxxx
58<?php
use Paylink\Models\Request\Design;
use Paylink\Paylink;
use Paylink\PaylinkException;
spl_autoload_register(function ($class) {
$root = dirname(__DIR__);
$classFile = $root . '/lib/' . str_replace('\\', '/', $class) . '.php';
if (file_exists($classFile)) {
require_once $classFile;
}
});
// $instanceName is a part of the url where you access your paylink installation.
// https://{$instanceName}.pay-link.eu
$instanceName = 'YOUR_INSTANCE_NAME';
// $secret is the paylink secret for the communication between the applications
// if you think someone got your secret, just regenerate it in the paylink administration
$secret = 'YOUR_SECRET';
$paylink = new Paylink($instanceName, $secret);
$design = new Design();
$design->setId(1);
$design->setDefault(false);
$design->setName('Example Design (via API)');
$design->setHeaderImageShape('square'); // square, rectangular or round