You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi!
I was able to view the task on jira through API using this endpoint however cant view the attached image.
When I loop use the function below to get the data from the ID, I get this error:
got the code from this documentation:
Jira Api Documentation to Get Attachment
This is my code.
public static Dictionary<string, object> GetImageDetails(string attachmentId, WebHeaderCollection headers, string yourDomain)
{
// Set the URL
string url = $"https://{yourDomain}.atlassian.net/rest/api/3/attachment/{attachmentId}";
// Initiate the web request
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Headers = headers;
request.Method = "GET";
try
{
// Get the response
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
// Deserialize the JSON response
Dictionary<string, object> responseDict = JsonConvert.DeserializeObject<Dictionary<string, object>>(responseString);
// Close the response and request streams
response.Close();
response.Dispose();
request = null;
return responseDict;
}
catch (WebException ex)
{
// Handle any exceptions that might occur
Console.WriteLine($"Error: {ex.Message}");
throw;
}