Help required in android integration

// Include maven repository url and authentication details repositories { maven { url "https://artifactory.smallcase.com/artifactory/gradle-dev-local" credentials { username "${artifactory_user}" password "${artifactory_password}" } } } what needs to go here in user_name and password field here.
ANSWERED

Getting GatewayError for user balance fetching

We are trying to fetch the user balance. But, getting the following error. We are using the Zerodha broker. ``` { "name": "GatewayError", "code": 1008, "data": null, "message": "no_broker" } ```
ANSWERED
ANSWERED
ANSWERED

Fetch user holdings - Holdings Import API

I've registered my email Id with ZERODHA (kite) broker with smallcase earlier and Holdings Import API was working fine. Currently, I've registered the same email Id with UPSTOX broker but Holdings Import API is hanging and timing out with status code 504 and response={"message": "Endpoint request timed out"}. I've tried making a request from the documentation's UI and its timing out there as well. Is it because I've registered the same email Id with ZERODHA broker and now I'm trying to connect to UPSTOX with same email Id?
ANSWERED
ANSWERED

Order Details and Single Stock Update Webhook - Queries

<1> Order Details: We’re not getting a broker field in the response of order details for a user while in the documentation’s example we’ve the broker field under data. <2> Smallcase Single Stock Update: In case of LIMIT order, if the quantity=10 and filledQuantity<10 (for ex. 5, 6 etc.) then what will be status?
ANSWERED

How much does smallcase charge for API Gateway?

How much does smallcase charge for API Gateway?
ANSWERED

What is invalid request

What is invalid request when I login to up stock account
ANSWERED

Single Stock Update Webhook - Average Price

In the response of single stock update webhook, We have following response: { "batchId": "XXXXXXXXXXXXXX", "buyAmount": 0, "sellAmount": 24360.119999999995, "quantity": 1, "filled": 1, "status": "COMPLETED", "variety": "regular", "completedDate": "2022-01-07T14:17:23.276Z", "orders": [ { "status": "COMPLETE", "quantity": 10, "tradingsymbol": "RELIANCE", "transactionType": "SELL", "averagePrice": 2436.0119999999997, "exchange": "NSE", "orderType": "MARKET", "product": "CNC", "filledQuantity": 10, "exchangeOrderId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX" } ], "unplaced": [], "transactionId": "XXXXXXXXXXXXXXXXXXXXXXXX", "broker": "kite-leprechaun", "smallcaseAuthId": "XXXXXXXXXXXXXXXXXXXXX", "timestamp": "2022-01-07T14:17:23.286Z", "checksum": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" } Here, when the transaction type is SELL and we get the average price. What does this average Price represents? Is it the Sell Price per Share for this SELL transaction? Similarly, when the transaction type is BUY and we get the average price. Is it the price at which those shares were bought or the weighted average price of all the shares for that ticker? For ex. We buy 2 share of ticker X at price A and 1 share of same ticker X at price B. The average price that we'll get in the BUY order of X at price B, is it the weighted average price for the current holdings (2 (at price A) +1 (at price B) = 3 shares) or the price at which that share was bought (B in this case) ?