How can I test the API of Sparkflows?

You can run below curl command:

curl --location --request POST ‘http://localhost:8090/messageFromSparkJob’ --header ‘Content-Type: application/json’ --data-raw ‘{“jobId”: “256”, “message”: “this is test message”}’

Expected response of API:

{
“details”: “Fire Exception”,
“message”: “Job Id doesn’t exist. Please input valid jobId”
}

Note: Make sure to change the localhost to your domain name or your IP where Sparkflows is running.