cancel
Showing results for 
Search instead for 
Did you mean: 

Accessing JIRA APIs through KDB

LearnerKDB
New Contributor II

I want to create a Q script that will compare tables from various sources and attach results to a Jira ticket in the form of text file. 

Number of files to be compared are around 25. I have script which can compare tables. But not sure how to access JIRA APIs.

Please help.

1 ACCEPTED SOLUTION

rocuinneagain
Valued Contributor
Valued Contributor

Kdb+ does have inbuilt HTTP functions for GET (.Q.hg)   and POST (.Q.hp)

These blog posts may be of interest:

Another option would be to use embedPy.

You can use it to expose Python functions to q

 

When data is returned as JSON you can use .j.k to deserialize

View solution in original post

2 REPLIES 2

rocuinneagain
Valued Contributor
Valued Contributor

Kdb+ does have inbuilt HTTP functions for GET (.Q.hg)   and POST (.Q.hp)

These blog posts may be of interest:

Another option would be to use embedPy.

You can use it to expose Python functions to q

 

When data is returned as JSON you can use .j.k to deserialize

Thanks rocuinneagain. I will go through the blogs.