@muvvala-g, I use Jenkins too, so I can put together an example if you want, but here's some quick research I did so far:

https://jenkins.io/doc/book/managing/cli/#common-commands

It looks like Jenkins gives you a command-line tool that can run jobs.

EDIT: I tried it out and it works pretty well. My command looks like this:

java -jar jenkins-cli.jar -s http://localhost:8080 -http -auth admin:PASSWORD build MyJob -v -s

Also, I downloaded the jenkins-cli.jar from my own Jenkins server with this command:

wget http://localhost:8080/jnlpJars/jenkins-cli.jar

Does that accomplish what you're trying to do?