Path parameters

Query parameters

Responses

  • 200 array[object] | null

    An array of interest rates and their effective time periods

  • 401

    Unauthorized.

  • 403

    Forbidden.

  • 404

    Account not found

  • 429

    Too many requests.

  • Unexpected Error.

GET /accounts/{account_id}/interest_rates
curl \
 -X GET https://<your_environment_name>-uat-api.canopyservicing.com/accounts/can_52322/interest_rates?effective_at_inclusive_start=2020-01-01T00%3A00%3A00%2B00&effective_at_exclusive_end=2020-01-01T00%3A00%3A00%2B00 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
[
  {
    "account_id": 4,
    "line_item_id": "can_26",
    "effective_at_inclusive_start": "2018-07-20T09:12:30+00:00",
    "effective_at_exclusive_end": "2018-07-20T09:12:30+00:00",
    "interest_rate": "1.23",
    "interest_rate_id": "10",
    "tags": {
      "scra": "true"
    }
  }
]