List statement types
curl --request GET \
--url https://api.anchorage-staging.com/v2/statement-types \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/statement-types"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/statement-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "b00e2483-57a1-4db4-8ea1-b91223a76a20",
"name": "Brokerage Monthly Statement"
},
{
"id": "d3b07384-d9a0-4f8b-8a1a-6f3e4b2e4f8b",
"name": "Custody Monthly Statement"
},
{
"id": "058da362-31a7-4e2b-ae3e-77b095389a5f",
"name": "Exchange Trade Fund"
},
{
"id": "e6ffd062-7bbc-4d72-b9d0-409f7fe7dd0d",
"name": "Program Customer Monthly"
},
{
"id": "cbe88de1-2470-46f1-aa59-932eeda16ba2",
"name": "Registered Investment Advisor"
}
],
"page": {
"next": null
}
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}List statement types
List statement types.
GET
/
statement-types
List statement types
curl --request GET \
--url https://api.anchorage-staging.com/v2/statement-types \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/statement-types"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/statement-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "b00e2483-57a1-4db4-8ea1-b91223a76a20",
"name": "Brokerage Monthly Statement"
},
{
"id": "d3b07384-d9a0-4f8b-8a1a-6f3e4b2e4f8b",
"name": "Custody Monthly Statement"
},
{
"id": "058da362-31a7-4e2b-ae3e-77b095389a5f",
"name": "Exchange Trade Fund"
},
{
"id": "e6ffd062-7bbc-4d72-b9d0-409f7fe7dd0d",
"name": "Program Customer Monthly"
},
{
"id": "cbe88de1-2470-46f1-aa59-932eeda16ba2",
"name": "Registered Investment Advisor"
}
],
"page": {
"next": null
}
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}Authorizations
An API key associated with a security role
Query Parameters
When paginating this is used to provide the starting point for the page to fetch (retrieved from the previous response body)
Maximum number of results to return per query
Required range:
1 <= x <= 100Was this page helpful?