GuidesRecipesAPI Reference
Log In
Guides

List of investor group objects

List all investor groups in your database

Value
Request methodGET
Path/api/entities/investorgroup/list/all
Request parametersNone
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)

Details: <example.com>