how to add an attachment to JIRA issue through rest API

tamil tamil July 13, 2017

Hi,

I have file as Inputstrteam i need to attach these file to JIRA ISSUE through rest API.I have accesstoken.I use Oauth authentication to call jira API's .

Can u please help me in this case.

 

Thanks in advance

1 answer

0 votes
Dario B
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 13, 2017
tamil tamil July 13, 2017

Hi @Dario B

Thanks for your reply.

I have already seen above URL.That URL contains user name and password.But i am having accessToken(i dont have user name password).i have to add an attachment to jira issue through rest API from my java code.

Dario B
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 13, 2017

It should work the same way. You just have to pass the access token in the request header as specified in:


https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-authentication/

Pass the OAuth access token in the request header, not request body, when making requests: If you pass the OAuth data in the request body, it will return a “400 Bad Request” error for most methods. You must pass the data in the header instead, e.g. “Authorization: Bearer {access_token}“

 

tamil tamil July 13, 2017

Thanks @Dario B

In https://docs.atlassian.com/jira/REST/cloud/ Link

they have defined the Add attachment API, In that API they need attachment as  multi part form request.but my side i have attachment as input stream how can i convert input stram to multipart and send them.

Suggest an answer

Log in or Sign up to answer