File "etsy_shipping.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/admin/controller/extension/openbay/etsy_shipping.php
File size: 332 B (332 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
class ControllerExtensionOpenbayEtsyShipping extends Controller {
	public function getAll() {
		$response = $this->openbay->etsy->call('v1/etsy/product/shipping/getAllTemplates/', 'GET');

		$this->response->addHeader('Content-Type: application/json');
		return $this->response->setOutput(json_encode($response));
	}
}