Returns a list of all PersonLogBookEntry

GET /api/crm/person_log_book_entry

Query parameters

  • person string

    Requires access right: SCOPE

  • company string

    Requires access right: SCOPE

  • unifiedCategory string

    Requires access right: SCOPE

  • product string

    Requires access right: SCOPE

  • contentType string

    Requires access right: SCOPE

  • content string

    Requires access right: SCOPE

  • start string

    Requires access right: SCOPE

  • end string

    Requires access right: SCOPE

  • discountProduct string

    Requires access right: SCOPE

  • discountStart string

    Requires access right: SCOPE

  • discountEnd string

    Requires access right: SCOPE

  • passiveProduct string

    Requires access right: SCOPE

  • passiveStart string

    Requires access right: SCOPE

  • passiveEnd string

    Requires access right: SCOPE

  • freeProduct string

    Requires access right: SCOPE

  • freeStart string

    Requires access right: SCOPE

  • freeEnd string

    Requires access right: SCOPE

  • startBilling string

    Requires access right: SCOPE

  • searchString string

    text to search for in the list

  • orderFieldName string

    name of the order field

  • orderFieldSort string

    sorting mode

    Values are DESC or ASC.

  • page integer

    page of the list

    Default value is 0.

  • pageSize integer

    number of entries for each page

    Minimum value is 1, maximum value is 200. Default value is 50.

  • withMaxPageNumber string

    returns the number of pages available as a header if this is set

  • iw-build-id string

    build id of the client

  • iw-package-id string

    package id of the client

Responses

  • 200 application/json

    Returns a list of all PersonLogBookEntry

    Hide response attributes Show response attributes object
    • id integer
    • content string
    • content_type string
    • content_type_addition string
    • start string(date-time)
    • start_billing string(date-time)
    • end string(date-time)
    • discount_start string(date-time)
    • discount_end string(date-time)
    • free_start string(date-time)
    • free_end string(date-time)
    • passive_start string(date-time)
    • passive_end string(date-time)
    • created string(date-time)
    • updated string(date-time)
    • search_string string
    • payment_type object
      Hide payment_type attributes Show payment_type attributes object
      • id integer
      • name string
      • auto boolean
      • conditions string
      • linked_keywords string
      • global_default boolean
      • bank_import_default boolean
      • is_direct_debit boolean
      • is_external boolean
      • deleted boolean
GET /api/crm/person_log_book_entry
curl \
 --request GET 'https://replace-with-own-host.iw-erp.de/api/crm/person_log_book_entry' \
 --header "x-session-token: $API_KEY"
Response examples (200)
[
  {
    "id": 42,
    "content": "string",
    "content_type": "string",
    "content_type_addition": "string",
    "start": "2025-05-04T09:42:00Z",
    "start_billing": "2025-05-04T09:42:00Z",
    "end": "2025-05-04T09:42:00Z",
    "discount_start": "2025-05-04T09:42:00Z",
    "discount_end": "2025-05-04T09:42:00Z",
    "free_start": "2025-05-04T09:42:00Z",
    "free_end": "2025-05-04T09:42:00Z",
    "passive_start": "2025-05-04T09:42:00Z",
    "passive_end": "2025-05-04T09:42:00Z",
    "created": "2025-05-04T09:42:00Z",
    "updated": "2025-05-04T09:42:00Z",
    "search_string": "string",
    "payment_type": {
      "id": 42,
      "name": "string",
      "auto": true,
      "conditions": "string",
      "linked_keywords": "string",
      "global_default": true,
      "bank_import_default": true,
      "is_direct_debit": true,
      "is_external": true,
      "deleted": true
    }
  }
]