Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
...
Info |
---|
During the implementation of HTTP service, |
Code Block |
---|
headers: new HttpHeaders({ 'Content-Type': 'application/json' }), responseType: 'arraybuffer' as 'json' |
Retrieve Stock Details
...
POST /smartfin/api/v1/stockmgmt/select
...
JSON Body:
|
Schema
...
Code Block |
---|
s_date, e_date - string |
...
Update / Insert Stock Details
...
Update:
POST/smartfin/api/v1/stockmgmt/execution_update
Insert:
POST/smartfin/api/v1/stockmgmt/execution_insert
Insert new or update existing stock details into database
...
Same as the response body from https://mafint.atlassian.net/wiki/spaces/MAD/pages/2143158293/Stock+Details#Response ( Refer to the definition of each parameter )
Delete Stock Details
...
DELETE/smartfin/api/v1/stockmgmt/delete
...
JSON Body:
|
Code Block |
---|
del_ids - array[integer] |
...