GuidesRecipesAPI Reference
Log In
Guides

List of investor group objects

List all investor groups in your database

Value

Request method

GET

Path

/api/entities/investorgroup/list/all

Request parameters

None

Reference

[getallinvestorgroupofcompany] [https://quantiumfund.readme.io/reference#getallinvestorgroupofcompany]

Example

curl --request GET \
  --url https://example.com/api/entities/investorgroup/list/all
fetch("https://example.com/api/entities/investorgroup/list/all", {
  "method": "GET",
  "headers": {}
})
.then(response => {
  console.log(response);
})
.catch(err => {
  console.error(err);
});
import requests

url = "https://example.com/api/entities/investorgroup/list/all"

response = requests.request("GET", url)

print(response.text)