Skip to main content
GET
/
contact-activity-logs
List CRM events
curl --request GET \
  --url https://app.fintoro.sk/api/public/v1/contact-activity-logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 551,
      "type": "note",
      "metadata": {
        "content": "Follow-up call summary",
        "email": "crm@example.test",
        "personName": "John Caller",
        "phoneNumber": "+421900000000",
        "documentNumberSnapshot": "20260001",
        "documentPriceSnapshot": 121,
        "documentCurrencySnapshot": {
          "id": 1,
          "symbol": "EUR",
          "name": "Euro",
          "mark": "€"
        },
        "paidAmount": 25.5,
        "relatedDocument": {
          "documentType": "invoice",
          "documentId": 301,
          "name": "Invoice 20260001",
          "number": "20260001",
          "issueDate": "2026-03-10",
          "totalWithVat": 121,
          "currency": {
            "id": 1,
            "symbol": "EUR",
            "name": "Euro",
            "mark": "€"
          }
        }
      },
      "attachments": [
        {
          "id": 9001,
          "name": "note.pdf",
          "mimeType": "application/pdf",
          "url": "https://cdn.fintoro.sk/contact-activity-attachments/note.pdf"
        }
      ],
      "businessCaseId": 501,
      "clientId": 101,
      "supplierId": 151,
      "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

businessCaseId
integer

ID of a business case. Mutually exclusive with clientId and supplierId.

Example:

501

clientId
integer

ID of a client. Mutually exclusive with businessCaseId and supplierId.

Example:

101

supplierId
integer

ID of a supplier. Mutually exclusive with businessCaseId and clientId.

Example:

151

type
enum<string>

Optional filter by CRM event type.

Available options:
note,
email,
phone_call,
document_linked
Example:

"note"

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

CRM event list.

data
object[]
paginator
object

Pagination metadata returned by paginated list endpoints.