Investments
Retrieving investment information
# Get a list of all endpoints
r = requests.get(
f'{URL}/distributor/v2/investments/',
headers={**headers}
)
assert r.status_code < 300, r.content
investment_id = r.json()['results']['0']['id']
# Retrieve investment details
r = requests.get(
f'{URL}/distributor/v2/investments/{investment_id}/',
headers={**headers}
)
assert r.status_code < 300, r.content
status = r.json()['status']
print(status)Investment status field codes
Registry statements
Last updated
Was this helpful?