api
[!NOTE] api url: http(s)://sample.klocwork.com:443/review/api reference:
Authentication using the ltoken
$ export KLOCWORK_LTOKEN=/path/to/ltoken
default path for kwauth:
Windows:
%APPDATA%\.klocwork\ltoken
Unix:
~/.klocwork/ltoken
Mac:
~/.klocwork/ltoken
Klocwork Static Code Analysis Web API Reference
to access Web API send a POST request to http://sample.klocwork.com/review/api with the following parameters:
user* Klocwork user name
ltoken kwauth login token
action* action name
builds
: retrieve the list of builds for a project.example:
curl --data "action=builds&user=myself&project=project_name" http://sample.klocwork.com/review/api
project* : project name
username : username
list all projects
list builds info from project
ltoek
is got from${KLOCWORK_LTOKEN}
filereference:
api additional header :
-H "Content-Type: application/x-www-form-urlencoded;charset=UTF-8"
[!NOTE🏷️references:]
search
retrieve the list of detected issues.
example:
curl --data "action=search&user=myself&project=my_project&query=file:MyFile.c" http://sample.klocwork.com/review/api
project* : project name
query : search query, such as narrowing by file (for example, 'file:MyFile.c')
view : view name
limit : search result limit
summary : include summary record to output stream
Searching in Klocwork Static Code Analysis: Searching in Klocwork Static Code Analysis
NOTE: You can only search by one build at a time. Other acceptable syntax:
build:'123' - searches for build which contains substring '123'
build:+123 - searches for build with name 123
build:+'123string' - searches for build with name equal to '123string'
actions
[!NOTE|label:references:]
server
import_server_configuration
action=import_server_configuration&user=myself&sourceURL=http://oldserver:8080&sourceAdmin=user&sourcePassword=pwd
license_count
action=license_count&user=myself&feature=kwadmin10
task_status
action=task_status&user=myself
version
action=version&user=myself
access
roles
action=roles&user=myself&search=rolename
create_role
action=create_role&user=myself&name=myrole&create_project=true&manage_roles=false&change_issue_status=true&allowed_status_transitions=Any,Analyze;Analyze,Fix
delete_role
action=delete_role&user=myself&name=my_role
users
action=users&user=myself&search=username&limit=1000
create_user
action=create_user&user=myself&name=user_name&password=thepassword
delete_user
action=delete_user&user=myself&name=user_name
role_assignments
action=role_assignments&user=myself&search=rolename
update_role_assignment
action=update_role_assignment&user=myself&name=myrole&project=myproject&account=jdoe&group=false&remove=falseaction=update_role_assignment&user=myself&name=myrole&project=myproject&account=jdoe&group=false&remove=falseaction=update_role_assignment&user=myself&name=myrole&project=myproject&account=jdoe&group=false&remove=falseaction=update_role_assignment&user=myself&name=myrole&project=myproject&account=jdoe&group=false&remove=falseaction=update_role_assignment&user=myself&name=myrole&project=myproject&account=jdoe&group=false&remove=false
update_role_permissions
action=update_role_permissions&user=myself&name=myrole&create_project=true&manage_roles=false&change_issue_status=true&allowed_status_transitions=Any,Analyze;Analyze,Fix
project
groups
action=groups&user=myself&search=groupname&limit=1000
create_group
action=create_group&user=myself&name=group_name&users=User1,User2
delete_group
action=delete_group&user=myself&name=group_name
update_group
action=update_group&user=myself&name=group_name&users=User1,User2
projects
action=projects&user=myself
import_project
action=import_project&user=myself&project=my_project&sourceURL=http://oldserver:8080&sourceAdmin=user&sourcePassword=pwd
delete_project
action=delete_project&user=myself&name=my_project
update_project
action=update_project&user=myself&name=myproject&new_name=my_project
import_status
action=import_status&user=myself
modules
action=modules&user=myself&project=my_project
project_configuration
action=project_configuration&user=myself&project=my_project&build=build_name
taxonomies
action=taxonomies&user=myself&project=my_project
builds
builds
action=builds&user=myself&project=my_project
defect_types
action=defect_types&user=myself&project=my_project
update_defect_type
action=update_defect_type&user=myself&project=my_project&code=ECC.EMPTY&enabled=false
delete_build
action=delete_build&user=myself&project=my_project&name=build_1
create_module
action=create_module&user=myself&project=my_project&name=test&allow_all=true&paths="**/test/*"
delete_module
action=delete_module&user=myself&project=my_project&name=my_module
update_module
action=update_module&user=myself&project=my_project&name=test&new_name=aux&allow_all=true&paths="**/test/*,**/assert/*"
update_build
action=update_build&user=myself&name=build_1&new_name=build_03_11_2011
issue
issue_details
action=issue_details&user=myself&project=my_project&id=650
search
action=search&user=myself&project=my_project&query=file:MyFile.c
update_status
action=update_status&user=myself&project=my_project&ids=ids_list&status=new_status&comment=new_comment&owner=new_owner
report
views
action=views&user=myself&project=my_project
create_view
action=create_view&user=myself&project=my_project&name=critical&query=severity:1-3
delete_view
action=delete_view&user=myself&project=my_project&name=my_view
update_view
action=update_view&user=myself&project=my_project&tags=c,security&name=my_view
fchurns
action=fchurns&user=myself&component=Component
metrics
action=metrics&user=myself&project=my_project&query=file:MyFile.c
report
action=report&user=myself&project=my_project&build=build_1&x=Category&y=Component
Last updated