Skip to content

qrapids backlog Services

Lidia edited this page Apr 12, 2019 · 20 revisions

Connection to the Backlog Tool

qrapids-backlog RESTful services are used to connect the dashboard with a concrete Backlog Tool. The dashoard uses this connection to export the generated QRs.

In order to configure the connection to these services, you need to configure the backlog.url in the application.properties file (detailed information in Dashboard Configuration File)

Export QR service

Example of the REST API endpoint

REQUEST

curl -XPOST <qr-issuetracker URL>/createIssue -H 'Content-Type: application/json' -d '
{
"issue_summary": "QRAPIDS: This is a test issue",
"issue_description": "Lorem ipsum",
"issue_type": "Story"
}'

RESPONSE

{
"issue_url": "https://<your jira url>/rest/api/latest/issue/201860",
"issue_id": "RPA-425"
}

Clone this wiki locally