Skip to main content
GET
/
business-cases
List business cases
curl --request GET \
  --url https://app.fintoro.sk/api/public/v1/business-cases \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 501,
      "contactType": "client",
      "contactId": 101,
      "client": {
        "id": 101,
        "name": "Acme s.r.o.",
        "type": "company",
        "subjectId": "12345678",
        "taxId": "2020123456",
        "vatId": "SK2020123456",
        "isVatPayer": true,
        "email": "billing@acme.test",
        "street": "Main Street 1",
        "city": "Bratislava",
        "zip": "81101",
        "country": {
          "id": 703,
          "name": "Slovakia",
          "code": "SK",
          "eu": true
        },
        "hasDeliveryAddress": true,
        "deliveryStreet": "Warehouse Street 9",
        "deliveryCity": "Kosice",
        "deliveryZip": "04001",
        "deliveryCountry": {
          "id": 703,
          "name": "Slovakia",
          "code": "SK",
          "eu": true
        },
        "createdAt": "2026-03-03T12:00:00+01:00",
        "updatedAt": "2026-03-03T15:45:00+01:00",
        "preferredDeliveryMethodId": 1,
        "preferredPaymentMethodId": 1,
        "preferredCurrencyId": 1,
        "preferredLanguageId": 1,
        "preferredDueDays": 14,
        "preferredNote": "Due within 14 days.",
        "preferredVariableSymbol": 2026001,
        "preferredConstantSymbol": 308,
        "preferredSpecificSymbol": 55,
        "preferredTextAboveItems": "Thank you for your cooperation."
      },
      "supplier": {
        "id": 151,
        "type": "company",
        "name": "Supplier s.r.o.",
        "subjectId": "12345678",
        "taxId": "2020202020",
        "vatId": "SK2020202020",
        "isVatPayer": true,
        "email": "billing@supplier.test",
        "street": "Supplier Street 1",
        "city": "Bratislava",
        "zip": "81101",
        "country": {
          "id": 703,
          "name": "Slovakia",
          "code": "SK",
          "eu": true
        }
      },
      "name": "Client pipeline",
      "description": "Opportunity description",
      "status": {
        "id": 41,
        "name": "Negotiation",
        "color": "#22aa44"
      },
      "boardPosition": 2,
      "createdAt": "2026-03-10T10:00:00+01:00",
      "updatedAt": "2026-03-10T10:30:00+01:00"
    }
  ],
  "paginator": {
    "currentPage": 2,
    "perPage": 10,
    "totalPages": 5,
    "totalResults": 42,
    "currentFrom": 11,
    "currentTo": 20,
    "firstPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
    "lastPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=5",
    "nextPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=3",
    "previousPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
    "links": [
      {
        "url": "https://app.fintoro.sk/api/public/v1/invoices?page=2",
        "label": "2",
        "active": false
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token created for a specific company in Integrations → API.

Query Parameters

clientId
integer

Filter by a client. This field is mutually exclusive with supplierId.

Example:

101

supplierId
integer

Filter by a supplier. This field is mutually exclusive with clientId.

Example:

151

statusId
integer | null

Filter by a business-case status.

Example:

41

Full-text search by business-case name or description.

Maximum string length: 255
Example:

"keyword"

sortBy
enum<string>
default:id

Field used to sort business cases.

Available options:
name,
createdAt,
updatedAt,
boardPosition
Example:

"updatedAt"

sortDirection
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc
Example:

"desc"

perPage
integer
default:10

Number of results per page. Maximum is 200.

Required range: 1 <= x <= 200
Example:

10

page
integer
default:1

Page number to return.

Required range: x >= 1
Example:

1

Response

Business-case list.

data
object[]

List of business cases.

paginator
object

Paginator for the current result set.