List the draws of a credit line

Every financing agreement originated from the line, newest first — customer draws, and extensions of unpaid period draws. Each entry carries its ledger balances.

Path Parameters
  • creditLineId
    Type: string Format: uuid
    required
Query Parameters
  • status
    enum
    values
    • IN_PROGRESS
    • COMPLETED
    • DEFAULTED
    • RESTRUCTURED
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/credit-lines/{creditLineId}/agreements
curl https://api-sandbox.tryslatehq.com/credit-lines/123e4567-e89b-12d3-a456-426614174000/agreements \
  --header 'x-api-key: YOUR_SECRET_TOKEN'
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "applicationId": "123e4567-e89b-12d3-a456-426614174000",
    "creditLineId": "123e4567-e89b-12d3-a456-426614174000",
    "customerId": "123e4567-e89b-12d3-a456-426614174000",
    "fundedAmount": 10000,
    "fundedDate": "2025-01-01",
    "currency": "CAD",
    "firstPaymentDate": "2025-01-01",
    "estimatedLastPaymentDate": "2025-01-01",
    "status": "IN_PROGRESS",
    "term": 12,
    "termUnit": "month",
    "repaymentFrequency": 1,
    "repaymentFrequencyUnit": "month",
    "disbursed": false,
    "remainingBalance": 10000,
    "totalPaid": 10000,
    "createdAt": "2025-01-01T00:00:00Z",
    "updatedAt": "2025-01-01T00:00:00Z",
    "type": "fixed_mca",
    "fixedMCA": {
      "factorRate": 1.2
    }
  }
]