Get financing agreement

Path Parameters
  • id
    Type: stringFormat: uuid
    required
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/v2/financing-agreements/{id}
curl https://api-sandbox.tryslatehq.com/v2/financing-agreements/123e4567-e89b-12d3-a456-426614174000 \
  --header 'x-api-key: YOUR_SECRET_TOKEN'
{
  "id": "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
  },
  "payments": [
    {
      "amount": 10000,
      "currency": "CAD",
      "date": "2025-01-01T00:00:00Z",
      "type": "repayment",
      "status": "in_progress"
    }
  ],
  "upcomingPayments": [
    {
      "amount": 10000,
      "currency": "CAD",
      "date": "2025-01-01T00:00:00Z"
    }
  ]
}