Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Feature

Endpoint/Contract

Title

Description

Reference

Business rules

BusinessRuleConfiguration

Number sequences added to BusinessRules

  • Business rules were extended with new number sequence feature.

  • Number sequences can be accessed using the new GetNumberFromNumberSequenceAction.

Reference

Aggregations

Endpoints using the AggregatorBase contract

Add UiBehavior property to AggregatorBase

New property "uiBehavior" added to AggregatorBase contract. The new property allow to control the UI behavior in regards to:

  • EnableFilter: enables the Filter to be shown in the Content/ListItem browser

  • EnableSearchInFilter: enables the search box in the filter enabled through the previous property

  • EnableSuggestions: it enables to retrieve suggestions from the current aggregator in the main search box of the Content/ListItem browser

SeeĀ Contracts.generated.cs

Business process details

BusinessProcessSummary

Paged retrieval of business process details

  • Get a summary of a BusinessProcess using GET /v1/businessprocesses/{id}/summary. This includes succeeded and failed item counts for batch based operations (like Content Import, List Item Update etc.)

  • Get failures using GET /v1/businessprocesses/{id}/items/failed. This endpoints supports paging using a page token.

  • Get successful items using GET /v1/businessprocesses/{id}/items/successful. This endpoint supports paging using a page token.

  • Existing endpoint to get business process details was kept for compatibility reasons but is marked as obsolete and will be removed in the next release.

Reference