List finance requests

Query Parameters
  • page
    Type: integer
    min:  
    -9007199254740991
    max:  
    9007199254740991

    Page number

  • limit
    Type: integer
    min:  
    -9007199254740991
    max:  
    9007199254740991

    Items per page

  • search
    Type: string

    Free-text search

  • dateFrom
    Type: string Pattern: ^(0[1-9]|1[0-2])-([0-2][0-9]|3[01])-\d{4}$

    Filter from date (MM-DD-YYYY)

  • dateTo
    Type: string Pattern: ^(0[1-9]|1[0-2])-([0-2][0-9]|3[01])-\d{4}$

    Filter to date (MM-DD-YYYY)

  • orderBy
    Type: string

    Field used for sorting

  • orderDirection
    enum

    Sort direction

    values
    • asc
    • desc
  • id
    Type: stringFormat: uuid

    Finance request UUID

  • customerId
    Type: stringFormat: uuid

    Customer UUID

  • externalId
    Type: string

    Partner-defined reference

  • status
    enum

    Finance request status

    values
    • CREATED
    • IN_PROGRESS
    • SUBMITTED
    • APPROVED
    • DECLINED
    • CANCELED
    • EXPIRED
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/finance-requests
curl 'https://api-sandbox.tryslatehq.com/finance-requests?page=1&limit=50&search=&dateFrom=01-30-2025&dateTo=01-30-2025&orderBy=createdAt&id=123e4567-e89b-12d3-a456-426614174000&customerId=123e4567-e89b-12d3-a456-426614174000&externalId=fr_123' \
  --header 'x-api-key: YOUR_SECRET_TOKEN'
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "customerId": "123e4567-e89b-12d3-a456-426614174000",
      "externalId": "fr_123",
      "status": "CREATED",
      "type": "fixed_fepa",
      "amount": 10000,
      "currency": "CAD",
      "metadata": {
        "shiftDate": "2026-04-01",
        "rate": "67",
        "hours": "3.4"
      },
      "financingAgreementId": "123e4567-e89b-12d3-a456-426614174000",
      "createdAt": "2026-05-26T22:23:03.800Z",
      "updatedAt": "2026-05-26T22:23:03.800Z",
      "expiresAt": "2026-05-26T22:23:03.800Z"
    }
  ],
  "page": 1,
  "limit": 1,
  "total": 1,
  "totalPages": 1
}