List finance requests
Query Parameters
- Type: integerpagemin:-9007199254740991max:9007199254740991
Page number
- Type: integerlimitmin:-9007199254740991max:9007199254740991
Items per page
- Type: stringsearch
Free-text search
- Type: stringdate
From Pattern: ^(0[1-9]|1[0-2])-([0-2][0-9]|3[01])-\d{4}$Filter from date (MM-DD-YYYY)
- Type: stringdate
To Pattern: ^(0[1-9]|1[0-2])-([0-2][0-9]|3[01])-\d{4}$Filter to date (MM-DD-YYYY)
- Type: stringorder
By Field used for sorting
- enumorder
Direction Sort direction
values- asc
- desc
- Type: stringFormat: uuidid
Finance request UUID
- Type: stringFormat: uuidcustomer
Id Customer UUID
- Type: stringexternal
Id Partner-defined reference
- enumstatus
Finance request status
values- C
R E A T E D - I
N _ P R O G R E S S - S
U B M I T T E D - A
P P R O V E D - D
E C L I N E D - C
A N C E L E D - E
X P I R E D
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
}