Questions tagged [fogbugz-api]
29 questions
1
vote
1 answer
Need a specific operation to be performed on Fogbugz api
I need to get some very specific information from the FogBugz API. Although I can spend time with the API documentation but I was just wondering if folks here had experience with it and might offer some help.
I need this information - for a given…

Kumar Vaibhav
- 2,632
- 8
- 32
- 54
0
votes
1 answer
WebClient, doesn't send parameters
I try to get the token from my fogbugz website, folowing :
http://fogbugz.stackexchange.com/fogbugz-xml-api
I have :
using (var wb = new WebClient())
{
var data = new NameValueCollection();
data["cmd"] =…

Christophe Debove
- 6,088
- 20
- 73
- 124
0
votes
1 answer
Getting a list of tickets based on a particular project using Fogbugz API
I'm wanting to list all tickets of a certain project using the Fogbugz API. I have the FogBugz project ID and name, now im not too sure how to get the tickets for the project.
I've looked on their API docs and unable to find this option, does…

phpNutt
- 1,529
- 7
- 23
- 40
0
votes
1 answer
A way to access Last Updated Time on any XML record in FogBugz
In my application I am accessing FOGBUGZ API in the form of XML to retrieve data. It is running fine. But Issue is that, we ever it start, it takes pull of whole data from starting point. Here I searched a lot on Internet, but i could not find any…

Rubyist
- 6,486
- 10
- 51
- 86
0
votes
1 answer
How can I query custom fields with the Fogbugz API?
I'm using the Python fogbugz module to access the XML API:
from fogbugz import FogBugz
fb = FogBugz(url=S_FOGBUGZ_URL, token=TOKEN)
respBug = fb.search(
q=str(ixBug),
…

Andreas Haferburg
- 5,189
- 3
- 37
- 63
0
votes
1 answer
Are Groups as referred to in the Fogbugz Web UI the same as Discussion Groups as referred to in the FogBugz-API?
Are Groups as referred to in the Fogbugz Web UI the same as Discussion Groups (CTRL+F "Discussion Groups") as referred to in the FogBugz-API?

leeand00
- 25,510
- 39
- 140
- 297
0
votes
1 answer
Fogbugz Module for DotNetNuke?
Is there a Fogbugz Module for DotNetNuke?
I googled it and couldn't find one.

leeand00
- 25,510
- 39
- 140
- 297
0
votes
1 answer
How to get logged in user id
I am currently trying to find which id the logged in user has, but the documentation does not show any clue whatsoever indicating how this can be achieved.
I need to know the logged in user id to tell whether or not the user is working on a case so…

Shadow
- 4,168
- 5
- 41
- 72
0
votes
1 answer
When saving FogBugz attachment, server always returns empty response (with some headers)
I'am trying to get case attachment to save in local folder. I have problem with using attachment url to download it, each time server returns empty results and status code 200.
This is a sample url I use (changed host and token)…

marcinj
- 48,511
- 9
- 79
- 100
0
votes
1 answer
Fogbugz XML API - Get list of cases for specific milestone
I can query a list of cases for a milestone with
https://example.fogbugz.com/api.asp?token=xxx&cmd=search&q=fixfor:v0.3.02&cols=sFixFor,ixFixFor
the fixfor parameter takes the name of the milestone. Is there any way of specifying the milestone by…

John Oxley
- 14,698
- 18
- 53
- 78
0
votes
1 answer
Log into FogBugz through c# application
I am trying to login into fogbugz using my c# application.I am using FogBugz XML API.
The code that I am currently using is:
0
votes
1 answer
How to add a custom field to the Project administration page using the FogBugz plugin API?
I'd like to add a custom field to Projects in FogBugz and have that field show up in the project administration page. This way, when a user creates a new project, or edits an old one, the field can be edited immediately.
My only other alternative…

Soviut
- 88,194
- 49
- 192
- 260
0
votes
1 answer
Fogbugz case - Assigning case to a user while created using Scoutsubmit.asp page
We are creating fogbugz cases through programming using https://example.com/ScoutSubmit.asp. Can anybody let us know that how to pass value so that the case can be assigned to a particular user on Fogbugz.
Your help in this regard will be highly…

skPlan
- 3
- 3
0
votes
1 answer
Change Fogbugz hover-over text in the wiki dropdown menu
I would like to make a way to change the default hover-over text on the Wiki dropdown menu in Fogbugz. The default is just the name of the article (which you don't need twice) and I would like to replace it with the wiki article's tagline.
It looks…
user1516127