Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,863
Community Members
 
Community Events
185
Community Groups

Cant View Images via API

Franco Glovasa
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Apr 03, 2023

Hi!

 

I was able to view the task on jira through API using this endpoint however cant view the attached image.

image1.png

When I loop use the function below to get the data from the ID, I get this error:image2.png

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;
}

 

0 answers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events