<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Order Modify on WebNotes</title><link>https://v2.webnotes.in/tags/order-modify/</link><description>Recent content in Order Modify on WebNotes</description><generator>Hugo</generator><language>en-IN</language><lastBuildDate>Wed, 20 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://v2.webnotes.in/tags/order-modify/index.xml" rel="self" type="application/rss+xml"/><item><title>Kite Connect order modify / cancel</title><link>https://v2.webnotes.in/kite-connect-order-modify-cancel/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://v2.webnotes.in/kite-connect-order-modify-cancel/</guid><description>&lt;p&gt;&lt;strong&gt;Kite Connect supports order modification and cancellation&lt;/strong&gt; for open orders not yet fully executed:&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Action&lt;/th&gt;
					&lt;th&gt;Endpoint&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Modify order&lt;/td&gt;
					&lt;td&gt;PUT /orders/regular/:order_id&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Cancel order&lt;/td&gt;
					&lt;td&gt;DELETE /orders/regular/:order_id&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Modify cover/bracket&lt;/td&gt;
					&lt;td&gt;PUT /orders/co (or bo) /:order_id&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="modify-scenarios"&gt;Modify scenarios&lt;/h2&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;What you can change&lt;/th&gt;
					&lt;th&gt;When&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Quantity&lt;/td&gt;
					&lt;td&gt;Pending (not partially filled) orders&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Price&lt;/td&gt;
					&lt;td&gt;Pending limit orders&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Trigger price&lt;/td&gt;
					&lt;td&gt;Pending stop-loss orders&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Validity&lt;/td&gt;
					&lt;td&gt;Pending orders&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Order type&lt;/td&gt;
					&lt;td&gt;Pending orders (limited transitions)&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Restrictions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cannot modify after partial fill (must cancel + re-place).&lt;/li&gt;
&lt;li&gt;Cannot modify exchange / tradingsymbol / transaction_type (must cancel + re-place).&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="cancel-scenarios"&gt;Cancel scenarios&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Open pending orders (full cancellation).&lt;/li&gt;
&lt;li&gt;Cannot cancel: fully executed, already cancelled, or rejected orders.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="python-example"&gt;Python example&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#75715e"&gt;# Modify&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;kite&lt;span style="color:#f92672"&gt;.&lt;/span&gt;modify_order(
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; variety&lt;span style="color:#f92672"&gt;=&lt;/span&gt;&lt;span style="color:#e6db74"&gt;&amp;#34;regular&amp;#34;&lt;/span&gt;,
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; order_id&lt;span style="color:#f92672"&gt;=&lt;/span&gt;&lt;span style="color:#e6db74"&gt;&amp;#34;240520000000123&amp;#34;&lt;/span&gt;,
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; price&lt;span style="color:#f92672"&gt;=&lt;/span&gt;&lt;span style="color:#ae81ff"&gt;2500.00&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#75715e"&gt;# Cancel&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;kite&lt;span style="color:#f92672"&gt;.&lt;/span&gt;cancel_order(
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; variety&lt;span style="color:#f92672"&gt;=&lt;/span&gt;&lt;span style="color:#e6db74"&gt;&amp;#34;regular&amp;#34;&lt;/span&gt;,
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; order_id&lt;span style="color:#f92672"&gt;=&lt;/span&gt;&lt;span style="color:#e6db74"&gt;&amp;#34;240520000000124&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="what-can-go-wrong"&gt;What can go wrong&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Order already filled before modify reached exchange.&lt;/li&gt;
&lt;li&gt;Network delay between modify request and execution.&lt;/li&gt;
&lt;li&gt;Rate limit hit on rapid modify-attempt loops.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="see-also"&gt;See also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-place-order-kite-connect-rest/"&gt;Place order via Kite Connect (Python)&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-basket-orders-api/"&gt;Kite Connect basket orders API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-gtt-api/"&gt;Kite Connect GTT API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-zerodha-api/"&gt;Kite Connect (Zerodha API)&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-oauth-login-flow/"&gt;Kite Connect OAuth login flow&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-basic-python-kiteconnect-script/"&gt;pykiteconnect Python quickstart&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kiteconnect-js-nodejs-quickstart/"&gt;kiteconnect.js Node.js quickstart&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-java-sdk/"&gt;Kite Connect Java SDK&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-generate-kite-connect-api-key/"&gt;Sign up and get Kite API key&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-generate-kite-connect-tokens/"&gt;Kite Connect access token generation&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-faqs/"&gt;Kite Connect FAQs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-api-pricing/"&gt;Kite Connect API pricing&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/algo-trading-with-kite-connect/"&gt;Algo trading with Kite Connect&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-historical-data-api/"&gt;Kite Connect historical data API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-stream-kite-websocket-ticks/"&gt;Kite Ticker WebSocket (Python)&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/backtesting-with-kite-historical-api/"&gt;Backtesting with Kite historical API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-rate-limits/"&gt;Kite Connect rate limits&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-static-ip-requirement/"&gt;Kite Connect static IP requirement&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-connect-sandbox-mock/"&gt;Kite Connect sandbox / mock&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/use-kite-api-data-on-other-platforms/"&gt;Use Kite API data on other platforms&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/historical-api-without-kite-connect-access/"&gt;Historical API without Kite Connect access&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/historical-vs-live-data-pricing/"&gt;Historical vs live data pricing&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-api-charges-and-plans/"&gt;Kite API charges and plans&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/net-vs-day-in-positions-api/"&gt;Net vs Day in positions API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-fix-max-order-request-exceeded-without-5000-orders/"&gt;How to fix max order request exceeded without 5000 orders&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-get-invoice-for-kite-connect-subscription/"&gt;How to get invoice for Kite Connect subscription&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-fix-mobile-browser-issue-with-kite-connect-login/"&gt;Mobile browser issue with Kite Connect login&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/how-to-renew-kite-connect-subscription/"&gt;Deactivate / unsubscribe Kite Connect&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/will-zerodha-help-code-strategies/"&gt;Will Zerodha help code strategies&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-publisher/"&gt;Kite Publisher API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-mcp-for-ai-assistants/"&gt;Kite MCP for AI assistants&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/zerodha-open-api-community/"&gt;Zerodha Open API community&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/algorithmic-trading-india/"&gt;Algorithmic trading in India&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/zerodha/"&gt;Zerodha&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://v2.webnotes.in/kite-zerodha/"&gt;Kite (Zerodha)&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="external-references"&gt;External references&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://kite.trade/docs/connect/v3/orders/"&gt;Kite Connect orders API&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zerodha.com/"&gt;Zerodha&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="references"&gt;References&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Zerodha, &lt;em&gt;Kite Connect orders API&lt;/em&gt;, kite.trade.&lt;/li&gt;
&lt;/ol&gt;</description></item></channel></rss>