upstox-js-sdk
Version:
The official Node Js client for communicating with the Upstox API
28 lines (23 loc) • 649 B
Markdown
```javascript
let UpstoxClient = require('upstox-js-sdk');
let defaultClient = UpstoxClient.ApiClient.instance;
var OAUTH2 = defaultClient.authentications['OAUTH2'];
OAUTH2.accessToken = "{your_access_token}";
let apiInstance = new UpstoxClient.IPOApi();
// status: open | closed | listed | upcoming
// issueType: regular | sme
let opts = {
status: "open",
issueType: "regular",
pageNumber: 1,
records: 20
};
apiInstance.getIpoListing(opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + JSON.stringify(data));
}
});
```