GuidesRecipesAPI Reference
Log In
Guides

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/investor/list/all

Request parameters

None

Reference

getallinvestorsofcompany

Example

curl --request GET \
  --url https://example.com/api/entities/investor/list/all
fetch("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/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

getinvestorsofscope

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)