JSON Converssion Question

Alan B

New Member
Joined
Jan 17, 2009
Messages
14
I can successfully parse the CA Agile Rally API to return information into a worksheet, but the information returned in the description field is full of HTML tags. Is there any way to pull or publish the data in that field without the HTML tags?

Sample Code:
URL = "https://rally1.rallydev.com/slm/webservice/v2.0/hierarchicalrequirement?query=(FormattedID%20=%20" & RequestNumber & ")&pagesize=20&fetch=FormattedID,Name,Description,Project,ScheduleState,Iteration,Release,c_ActualRelease,c_Requestorname,c_Region,c_BookingChannel,c_GDS,LastUpdateDate"


HTTP.Open "GET", URL, False
HTTP.SetRequestHeader "authorization", secHeader
HTTP.Send

jsonText = HTTP.ResponseText

Set json = JsonConverter.ParseJson(jsonText)

w2.Cells(x, 1) = json("QueryResult")("Results")(x)("FormattedID")
w2.Cells(x, 2) = json("QueryResult")("Results")(x)("Name")
w2.Cells(x, 3) = json("QueryResult")("Results")(x)("Description")


Any help or guidance would be greatly appreciated


 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top