Skip to content

Data Clinic Event Processor (1)

Internal API for sending test events for Data Clinic Event Processor.

Languages
Servers
Mock server

https://idp.cdq.com/_mock/apis/data-clinic-event-processor/api-v1/

Production SOAP

https://data-clinic-event-processor.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v1/

Production

https://data-clinic-event-processor.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/

Data Clinic Event Processor

Perform manual event processing.

Operations

Augmentations Counter

Perform manual augmentations cache maintenance.

Operations

Read Augmentation Counter

Request

To be used internally only, for manual tests of counter.

Security
oAuth2
Path
storageIdstring(BusinessPartnerStorageId)required

Unique ID of a Business Partner Storage.

Example: 72d6900fce6b326088f5d9d91049e3e6
curl -i -X GET \
  https://idp.cdq.com/_mock/apis/data-clinic-event-processor/api-v1/storages/72d6900fce6b326088f5d9d91049e3e6/augmentationscounter \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
valueinteger(int64)(StorageAugmentationsCounterValue)required

Number of augmentations processed today.

Example: "0"
Response
application/json
{ "value": "0" }

Update Augmentation Counter

Request

To be used internally only, for manual tests of counter.

Security
oAuth2
Path
storageIdstring(BusinessPartnerStorageId)required

Unique ID of a Business Partner Storage.

Example: 72d6900fce6b326088f5d9d91049e3e6
Bodyapplication/jsonrequired
valueinteger(int64)(StorageAugmentationsCounterValue)required

Number of augmentations processed today.

Example: "0"
curl -i -X PUT \
  https://idp.cdq.com/_mock/apis/data-clinic-event-processor/api-v1/storages/72d6900fce6b326088f5d9d91049e3e6/augmentationscounter \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "value": "0"
  }'

Responses

OK

Bodyapplication/json
valueinteger(int64)(StorageAugmentationsCounterValue)required

Number of augmentations processed today.

Example: "0"
Response
application/json
{ "value": "0" }