Get a list of all current and prior statements for a specific account

GET /accounts/{account_id}/statements/list

List of statements for the account. To view line items for a specific statement, use the /accounts/{account_id}/statements route

Path parameters

Query parameters

  • offset integer

    The zero-indexed starting point for paginated statements list requests sorted by reverse statement date.

  • limit integer

    The maximum number of accounts to be returned. Defaults to 100.

Responses

GET /accounts/{account_id}/statements/list
curl \
 -X GET https://<your_environment_name>-uat-api.canopyservicing.com/accounts/can_52322/statements/list \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
[
  {
    "account_id": "31mNprzLd2bKl6koVna68ARM",
    "statement_id": "31mNprzLd2bKl6koVna68ARM",
    "cycle_summary": {
      "cycle_inclusive_start": "2023-05-04T09:42:00+00:00",
      "cycle_exclusive_end": "2023-05-04T09:42:00+00:00"
    },
    "min_pay_due_cents": {
      "min_pay_cents": 160000,
      "min_pay_due_at": "2019-10-18T23:04:48.321+00:00"
    },
    "balance_summary": {
      "total_balance_cents": 400000
    }
  }
]