Get a list of all current and Metro2 credit reports for a specific account
GET
/accounts/{account_id}/credit_reports/list
List of Metro2 credit reports for the account. To view line items for a specific credit report, use the /accounts/{account_id}/credit_reports/{credit_report_id}
route
Path parameters
-
account_id string Required
ID of the Account
Query parameters
-
limit integer
The maximum number of accounts to be returned. Defaults to 100.
GET /accounts/{account_id}/credit_reports/list
curl \
-X GET https://<your_environment_name>-uat-api.canopyservicing.com/accounts/can_52322/credit_reports/list \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
{
"results": [
{
"account_id": "31mNprzLd2bKl6koVna68ARM",
"credit_report_id": "31mNprzLd2bKl6koVna68ARM",
"cycle_summary": {
"cycle_inclusive_start": "2023-05-04T09:42:00+00:00",
"cycle_exclusive_end": "2023-05-04T09:42:00+00:00"
},
"bureau_reports_included": {
"equifax": true,
"experian": true,
"transunion": true
}
}
]
}