shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

etsy_shop.php (317B)


      1 <?php
      2 class ControllerExtensionOpenbayEtsyShop extends Controller {
      3 	public function getSections() {
      4 		$response = $this->openbay->etsy->call('v1/etsy/shop/getSections/', 'GET');
      5 
      6 		$this->response->addHeader('Content-Type: application/json');
      7 		return $this->response->setOutput(json_encode($response));
      8 	}
      9 }