PagedResponseOfNetworkAction

Paginated response with cursor-based pagination.

  • data
    Type: array object[] · NetworkAction[]
    required

    The list of data items for this page.

    Public API representation of a network action (audit log entry). Immutable record of changes made to contacts/companies.

    • cursor
      Type: string

      Opaque cursor for pagination (use this to fetch next page)

    • details

      Type-specific details about this action

    • event
      Type: null | string

      Audit event type: "ContactCreated", "ContactUpdated", "LinkCreated", etc. Only present for audit actions (type="audit").

    • id
      Type: string

      Unique identifier for this action

    • importId
      Type: null | integer | string Pattern: ^-?(?:0|[1-9]\d*)$Format: int32

      Import batch ID that triggered this action. Only present for actions originating from contact imports.

    • source
      Type: null | string

      Origin of this action: "PublicApi", "Import", or "System". Null for web UI actions and historical data.

    • timestampUtc
      Type: stringFormat: date-time

      When this action occurred (UTC)

    • type
      Type: string

      Type of action: "note" or "audit" (legacy: "api")

    • user
      Type: object · ActionUser nullable

      User who performed this action (if available)

  • page
    Type: object · PageInfo
    required

    Pagination metadata.

    • hasMore
      Type: boolean
      required

      True if there are more results available after this page.

    • pageSize
      Type: integer | string Pattern: ^-?(?:0|[1-9]\d*)$Format: int32
      required

      Number of items requested per page.

    • nextCursor
      Type: null | string

      Opaque cursor string to fetch the next page of results. Null if there are no more results.