Hello,
i want to know what is the JSON format needed to add attached files because the following code in VBscript report me an error :
Dim RestApiRequ, JiraUrl
Set RestApiRequ = CreateObject("Microsoft.XMLHTTP")
JiraUrl = "http://jiralink/jira/rest/api/2/issue/JIRATICKET/" & "attachments?os_username=" & JiraUserName & "&os_password=" & JiraPassword & ""
RestApiRequ.open "POST", JiraUrl, false
RestApiRequ.setRequestHeader "Content-Type", "application/json"
PostData = "{""file"":""C:\Users\ee.txt""}"
RestApiRequ.send PostData
Msgbox RestApiRequ.responseText
the error said that : the server refuse this request because the request entity is in format not supported by the requested ressource for the requested methode
so some one can help me to solve this issue ?
Hi ozaidris,
Are you able to use curl to add the attachment with curl? It sounds like you may be on Windows so you may need to download curl.
You may also want to see the last post by M.R. in this Communities post related to VB and attachments.
Cheers,
Branden
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.