Skip to content

Data Curation API (2)

This API provides services to curate and enrich Business Partner and address data.

Download OpenAPI description
Languages
Servers
Production

https://api.cdq.com/data-curation/rest/

Batch Curation

Everything about Batch Curation

Operations

Business Partners

Everything about Business Partners

Operations

Processing Logs

Operations

List Processing Log Results

Request

Retrieves latest data curation results persisted in Processing Log.

Data is populated only when Data Monitor is configured for provided storage.

Security
apiKey
Path
storageIdstring(BusinessPartnerStorageId)required

Business Partner Storage ID.

Example: 72d6900fce6b326088f5d9d91049e3e6
Query
businessPartnerIdArray of strings(BusinessPartnerId)<= 100 items

Business Partner IDs.

Example: businessPartnerId=63e635235c06b7396330fe40
dataSourceIdstring(BusinessPartnerStorageDataSourceId)

Business Partner Data Source ID.

Example: dataSourceId=648824a691d8d2503d65103e
externalIdArray of strings(BusinessPartnerExternalId)<= 100 items

Business Partner External IDs.

Example: externalId=The ID managed in the customer's SAP systems.
startAfterstring(StartAfter)

Used to retrieve the next page of results.

Example: startAfter=5712566172571652
limitinteger(int32)[ 1 .. 100 ]

Number of results that should be fetched. Maximum 100 results can be returned in one page.

Default 100
Example: limit=50
fromstring

ISO 8601 representation of the timestamp when the result since when data was created.

Example: from=2025-08-19T06:23:09Z
tostring

ISO 8601 representation of the timestamp when the result until when data was created.

Example: to=2025-08-19T06:23:09Z
featuresOffArray of strings(ProcessingLogResultsReadFeatureEnum)

Features to be deactivated.

Items Enum"FILTER_BY_ENABLED_AUGMENTATION_MONITORS""NUMBER_OF_TOTAL"
Example: featuresOff=FILTER_BY_ENABLED_AUGMENTATION_MONITORS
curl -i -X GET \
  https://api.cdq.com/data-curation/rest/v2/curationlogs/72d6900fce6b326088f5d9d91049e3e6/results \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
startAfterstring(StartAfter)

The ID which is used to read the page.

Example: "5712566172571652"
nextStartAfterstring(NextStartAfter)

Provides a value to be used as a startAfter in next page request.

Example: "5712566172571652"
limitinteger(Limit)

Number of items per page.

Example: "100"
fromstring

ISO 8601 representation of the timestamp when the result since when data was created.

Example: "2025-08-19T06:23:09Z"
tostring

ISO 8601 representation of the timestamp when the result until when data was created.

Example: "2025-08-19T06:23:09Z"
totalinteger(PageTotal)

Total number of items which can be paged.

Example: "67"
valuesArray of objects(CurationProcessingLogResult)

List of Curation Processing Log Results.

Response
application/json
{ "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "limit": "100", "from": "2025-08-19T06:23:09Z", "to": "2025-08-19T06:23:09Z", "total": "67", "values": [ {} ] }

Configuration

Operations