...
These requests would be of the type
curl -X POST -u <user>:<password> http://<onboardingapi host>/onboarding/dataformats -H "Content-Type: application/json" -d @<filepath to request>
curl -X POST -u <user>:<password> http://<onboardingapi host>/onboarding/components -H "Content-Type: application/json" -d @<filepath to request> Inrequest>
In our case, curl
curl -X POST -u acumos:integration2019 http://10.12.7.116/onboarding/dataformats -H "Content-Type: application/json" -d @<filepath to request>
curl -X POST -u acumos:integration2019 httphttp://10.12.7.116/onboarding/components -H "Content-Type: application/json" -d @<filepath to request>
...
c) Verify the resources were created using
curl -X GET -u acumos:integration2019 http://10.12.7.116/onboarding/dataformats
curl -X GET -u acumos:integration2019 http://10.12.7.116/onboarding/components
...