Create multiple, scoped API tokens on a per-user basis. Each token can be limited to only the access a specific tool or workflow actually needs - so your CI/CD pipeline, your AI-assisted analysis tooling, and your reporting scripts each get their own credential, with no more access than necessary.
Powerful Bash scripting interface with direct access to tool connectors and export operations.
Advanced Ruby scripting to query the internal database and access every single piece of functionality.
An easy to use query language let's you inspect and manipulate all the data gathered through the system:
More examples
recent_projects.each do |project|
puts "Listing issues for project #{project.name}"
with_scope(project) do
issue_library = Node.issue_library
Issue.where(node_id: issue_library.id).each do |issue|
puts "* #{issue.title}"
end
end
end
Your email is kept private. We don't do the spam thing.