Requirement summary report
curl --request GET \
--url https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}Reports
Requirement summary report
Requirement summary report.
GET
/
api
/
v2
/
accounts
/
{account_id}
/
summary_reports
/
requirement
Requirement summary report
curl --request GET \
--url https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v2/accounts/{account_id}/summary_reports/requirement"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}