List of investor entity objects
Returns a list of the investor entity objects
Retrieving all investor entity list in your database
| Value | |
|---|---|
| HTTP Method | GET |
| Path | /api/entities/investor/list/all |
| Request parameters | None |
| Reference | /api/entities/investor/list/all |
Example
curl --request GET \
--url https://example.com/api/entities/investor/list/allfetch("https://example.com/api/entities/investor/list/all", {
"method": "GET",
"headers": {}
})
.then(response => {
console.log(response);
})
.catch(err => {
console.error(err);
});import requests
url = "https://example.com/api/entities/investor/list/all"
response = requests.request("GET", url)
print(response.text)List all investors in a given scope
| HTTP Method | GET |
| Path | /api/entities/investor/list/perscope/{scopeId} |
| Request parameters | Scope ID (string): An ID of the selected scope which can be acquired by the Scope list API |
| Reference | /api/entities/investor/list/perscope/{scopeId} |
Example
curl --request GET \
--url https://example.com/api/entities/investor/list/perscope/{scopeId}fetch("https://example.com/api/entities/investor/list/perscope/scopeId", {
"method": "GET",
"headers": {}
})
.then(response => {
console.log(response);
})
.catch(err => {
console.error(err);
});import requests
url = "https://example.com/api/entities/investor/list/perscope/scopeId"
response = requests.request("GET", url)
print(response.text)Updated 5 months ago
