I tried with this url:
https://myPath.fogbugz.com/api.asp?cmd=new&sTitle=sometitle&ixProject=1&token=12345678910111213&FileName=C:\Users\John\Desktop\xxx.txt
and the issue is created, but the attachment no. How to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll need to use POST rather than GET, POSTing in
multipart/form-dataformat and passing in the files as type “file” and name “File1”, “File2”, “File3” etc, with a “nFileCount” parameter set to the total number of files being sent.Have a look at the Editing Cases section in the XML API docs for further details.