Please modify ApiCore library to manage PUT method: ``` if ( $method === 'PUT' ) { curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT"); curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $params, JSON_UNESCAPED_UNICODE ) ); } ```