In place order API I am providing an Alphanumeric tag for eg: "493910-AK41298" of length max 16. As given in the documentation tag can be of max 20 chars. But while placing ordering I am receiving the below response: {"status":"error","message":"`tag` should be max 8 characters","data":null,"error_type":"InputException"}
It should be only alphanumeric characters and length limit is still 20 characters.
We will update the error message which is misleading.
Sample HTML
document.getElementById("basket").value = '[{"tradingsymbol":"SILVERBEES","exchange":"NSE","transaction_type":"BUY","quantity":1,"readonly":true,"variety":"regular","order_type":"MARKET","tag":"my_custom_tag"},{"tradingsymbol":"GOLDBEES","exchange":"NSE","transaction_type":"BUY","quantity":1,"readonly":true,"variety":"regular","order_type":"MARKET","tag":"492310-AK42198"}]';
document.getElementById("basket-form").submit();
Response Received:
{"status":"error","message":"`tag` should be max 8 characters","data":null,"error_type":"InputException"}