API call to Checkmarx dashboardCalling shell commands from RubyCalling a function of a module by using its name (a string)How to merge two dictionaries in a single expression?Calling an external command in PythonHow do I prompt for Yes/No/Cancel input in a Linux shell script?How to mkdir only if a dir does not already exist?YYYY-MM-DD format date in shell scriptHow do you read from stdin?How to echo shell commands as they are executedHow to access environment variable values?
What is "ass door"?
Do Dragonborns get unarmored defense?
I have a domain, static IP address and many devices I'd like to access outside my house. How do I route them?
What does the following chess proverb mean: "Chess is a sea where a gnat may drink from and an elephant may bathe in."
Does switching on an old games console without a cartridge damage it?
RC differentiator giving a higher output amplitude than input amplitude
What's the 1 inch size square knob sticking out of wall?
What is an expert set in the fonts field?
Could I play forever with this loop combination?
Why does the salt in the oceans not sink to the bottom?
Impact of throwing away fruit waste on a peak > 3200 m above a glacier
Is it ethical to tell my teaching assistant that I like him?
Finding number of days per ID in table using ArcPy?
As a DM of a 4-player group, would it be appropriate for me to run a private 1-on-1 session so that one PC can act secretly?
Create a dropshadow only layer
Origin of the suffix in hippocampus
Higher calorie ice cream
What does a black-and-white Puerto Rican flag signify?
What is a "staved" town, like in "Staverton"?
Learning Ramban Al HaTorah
Is it possible to access the complete command line including pipes in a bash script?
Pass USB 3.0 connection through D-SUB connector
Storyboard broken after updating Xcode to version 10.3 (10G8) & app no longer is running
My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?
API call to Checkmarx dashboard
Calling shell commands from RubyCalling a function of a module by using its name (a string)How to merge two dictionaries in a single expression?Calling an external command in PythonHow do I prompt for Yes/No/Cancel input in a Linux shell script?How to mkdir only if a dir does not already exist?YYYY-MM-DD format date in shell scriptHow do you read from stdin?How to echo shell commands as they are executedHow to access environment variable values?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to get all the Checkmarx scan details of all the project on Checkmarx dashboard page. How do I do this using the Checkmarx API called from shell or python script?
python shell api checkmarx
add a comment |
I want to get all the Checkmarx scan details of all the project on Checkmarx dashboard page. How do I do this using the Checkmarx API called from shell or python script?
python shell api checkmarx
add a comment |
I want to get all the Checkmarx scan details of all the project on Checkmarx dashboard page. How do I do this using the Checkmarx API called from shell or python script?
python shell api checkmarx
I want to get all the Checkmarx scan details of all the project on Checkmarx dashboard page. How do I do this using the Checkmarx API called from shell or python script?
python shell api checkmarx
python shell api checkmarx
edited Mar 26 at 15:53
molnarm
8,9402 gold badges36 silver badges53 bronze badges
8,9402 gold badges36 silver badges53 bronze badges
asked Mar 26 at 14:07
user9579474user9579474
6
6
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try this : Get Report(s) by Id - GET /reports/sastScan/id
https://checkmarx.atlassian.net/wiki/spaces/KC/pages/222101925/Get+Report+s+by+Id+-+GET+reports+sastScan+id+v8.6.0+and+up
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
add a comment |
You can try the curl command generated by swagger.
To access a live Swagger environment navigate to:
http://:/cxrestapi/help/swagger/ui/index (e.g.http://localhost/cxrestapi/help/swagger/ui/index)
If you want to use python scripts, you can try my demo on GitHub(https://github.com/binqsoft/CxRestPy)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55359180%2fapi-call-to-checkmarx-dashboard%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this : Get Report(s) by Id - GET /reports/sastScan/id
https://checkmarx.atlassian.net/wiki/spaces/KC/pages/222101925/Get+Report+s+by+Id+-+GET+reports+sastScan+id+v8.6.0+and+up
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
add a comment |
Try this : Get Report(s) by Id - GET /reports/sastScan/id
https://checkmarx.atlassian.net/wiki/spaces/KC/pages/222101925/Get+Report+s+by+Id+-+GET+reports+sastScan+id+v8.6.0+and+up
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
add a comment |
Try this : Get Report(s) by Id - GET /reports/sastScan/id
https://checkmarx.atlassian.net/wiki/spaces/KC/pages/222101925/Get+Report+s+by+Id+-+GET+reports+sastScan+id+v8.6.0+and+up
Try this : Get Report(s) by Id - GET /reports/sastScan/id
https://checkmarx.atlassian.net/wiki/spaces/KC/pages/222101925/Get+Report+s+by+Id+-+GET+reports+sastScan+id+v8.6.0+and+up
answered Mar 26 at 16:09
nitasha thakurnitasha thakur
465 bronze badges
465 bronze badges
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
add a comment |
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Thanks. How I can call these API in my shell script. I tried running it using curl command but it's falling.
– user9579474
Mar 27 at 4:15
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
Please add more details of error.
– nitasha thakur
Mar 27 at 13:28
add a comment |
You can try the curl command generated by swagger.
To access a live Swagger environment navigate to:
http://:/cxrestapi/help/swagger/ui/index (e.g.http://localhost/cxrestapi/help/swagger/ui/index)
If you want to use python scripts, you can try my demo on GitHub(https://github.com/binqsoft/CxRestPy)
add a comment |
You can try the curl command generated by swagger.
To access a live Swagger environment navigate to:
http://:/cxrestapi/help/swagger/ui/index (e.g.http://localhost/cxrestapi/help/swagger/ui/index)
If you want to use python scripts, you can try my demo on GitHub(https://github.com/binqsoft/CxRestPy)
add a comment |
You can try the curl command generated by swagger.
To access a live Swagger environment navigate to:
http://:/cxrestapi/help/swagger/ui/index (e.g.http://localhost/cxrestapi/help/swagger/ui/index)
If you want to use python scripts, you can try my demo on GitHub(https://github.com/binqsoft/CxRestPy)
You can try the curl command generated by swagger.
To access a live Swagger environment navigate to:
http://:/cxrestapi/help/swagger/ui/index (e.g.http://localhost/cxrestapi/help/swagger/ui/index)
If you want to use python scripts, you can try my demo on GitHub(https://github.com/binqsoft/CxRestPy)
answered May 6 at 3:28
SuperChenSuperChen
11 bronze badge
11 bronze badge
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55359180%2fapi-call-to-checkmarx-dashboard%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown