post("/extras/export-templates/", $params); } /** * @param $params * @return mixed * @throws \GuzzleHttp\Exception\GuzzleException */ public function delete($id, $params=[]) { return $this->delete("/extras/export-templates/".$id."/", $params); } /** * @param $params * @return mixed * @throws \GuzzleHttp\Exception\GuzzleException */ public function edit($id, $params=[]) { return $this->put("/extras/export-templates/".$id."/", $params); } /** * @param $params * @return mixed * @throws \GuzzleHttp\Exception\GuzzleException */ public function list($params=[]) { return $this->get("/extras/export-templates/", $params); } /** * @param $params * @return mixed * @throws \GuzzleHttp\Exception\GuzzleException */ public function show($id, $params=[]) { return $this->get("/extras/export-templates/".$id."/", $params); } }