Versions Compared

Key

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

...

End to end call from Enrichment Coordinator Service


Image RemovedImage Added


From the Control Panel, Producer and Jobs can only be listed. 

...

In order to execute other actions such as create, modify and delete, curl can be use to interact with Enrichment Information API using NodePort from control panel.

In this example, test data is been used, so there is no real producer connected.

Type

Create Type

Code Block
languagebash
themeMidnight
curl -X 'PUT' \
  'http://localhost:30091/data-producer/v1/info-types/type2' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "info_job_data_schema": {
    "$schema":"http://json-schema.org/draft-07/schema#",
    "title":"STD_Type1_1.0.0",
    "description":"EI-Type 1",
    "type":"object"
  }
}'

...