Questions tagged [fogbugz-api]

29 questions
4
votes
2 answers

Get a case's milestone using Fogbugz API

Is there any way to determine what milestone a case is under? I have looked through the API and the case XML structure and there does not seem to be any way to match up cases and milestones.
Ryan Erb
  • 828
  • 1
  • 8
  • 28
3
votes
1 answer

Exporting case details from FogBugz

We are seeking to create a snapshot of all our FogBugz data however the GUI only seems to allow to export the top level list of cases, not their detail/attachments. Searching around the only solutions I can find relate to apps that are now out of…
Paul
  • 1,041
  • 11
  • 26
2
votes
1 answer

Fogbugz API :: Searching on a custom field

My version of Fogbugz is v8 and I'm trying to use the API to refine results by a custom field that i've created, so far i've got the…
phpNutt
  • 1,529
  • 7
  • 23
  • 40
2
votes
3 answers

Recommendations for automatically logging unexpected errors/stack traces to bug tracker

We have been looking at automatically logging all unexpected client errors to our bug tracker. For reference our application is written in Java/GWT/Guice/Hibernate/Jetty and our bug tracker is the hosted version of FogBugz which can create bugs…
benstpierre
  • 32,833
  • 51
  • 177
  • 288
2
votes
1 answer

FogBugz API - Change OrderBy direction

I'm getting a list of cases fro the FogBugz API and the OrderBy clause is 'case'. This is getting the first X items I request, where I want to get the last X items. How can I change the direction of the order by? I've…
David
  • 320
  • 1
  • 6
  • 22
2
votes
1 answer

Does FogBugz offer an API for managing User Groups?

Fog Bugs User Groups are described in their help articles, but the FogBugz API Documentation does not mention a method for interacting with them. How can I add and remove users from a FogBugz UserGroup programmatically?
Dan O'Boyle
  • 3,676
  • 5
  • 28
  • 44
2
votes
1 answer

Fogbugz: A way to pre-fill custom fields via HTTP post?

Greetings! Situation: We have a CRM system that generates unique customer IDs. Now we added a field "customer match code" to our Fogbugz cases, using the Custom Fields Plugin. In the CRM we have a button "Add case to customer" that launches a VB…
Robin
  • 1,658
  • 15
  • 26
2
votes
0 answers

Find all Persons with fogbugz api

Is there a way to get a list of all Persons using the Fogbugz API? I'm currently using a search for cases: var api = new FBApi(email, password); string cases = api.Search("edited:\"" + datetime + "\"", "ixBug"); Is there something similar for…
dkmt
  • 33
  • 1
  • 1
  • 5
2
votes
1 answer

Why is the Fogbugz API not allowing me to logon?

I can't seem to logon to the FogBugz v8 API with my credentials. Our system is setup to use Active Directory. Does it not allow this?
Agile Jedi
  • 2,922
  • 2
  • 18
  • 17
2
votes
1 answer

Fogbugz API - unable to upload file (c# implementation)

I can not upload attachments using the fogbugz API. I followed the fogbugz documentation but maybe I am wrong something. The error that occurs is: Ex.Message = "The given key was not present in the dictionary." StackTrace = " at…
Emiliano
  • 21
  • 3
2
votes
1 answer

How to attach files via ASP.net application to FogBugz with C#

I have an ASP.net application that allows the users to report bugs and attach files. The bug together with its detail and attachments should be saved in FogBugz. I have managed to create everything except the file attachment part. here is my…
Haleh
  • 21
  • 3
2
votes
1 answer

FogBugz XML API (Cases:)

I'm consuming the FogBugz XML API but I have a problem. I'm able to create new cases, open created cases, search cases etc through my app. The problem consist of when getting the payload I can get the body of the case using the following piece of…
EdMore
  • 135
  • 1
  • 12
1
vote
0 answers

How to change the squad parameter of ticket from FB Python API

I am using Fogbugz Python API, and I want to change the squad parameter of my ticket. Did the below change through Fogbugz UI. Squad changed from (No Value) to 'x'. but when I am doing, fb.edit(ixBug=75268,sSquad="Security…
Harshdeep Singh
  • 327
  • 1
  • 5
  • 18
1
vote
1 answer

How to parse an XML file with multiple non-specific elements

I'm trying to parse a list of cases that is returned from the Fogbugz API. Current code: from fogbugz import FogBugz from datetime import datetime, timedelta import fbSettings fb = FogBugz(fbSettings.URL, fbSettings.TOKEN) resp =…
Juice
  • 2,860
  • 4
  • 22
  • 20
1
vote
1 answer

Fogbugz API Creating a Milestone

According to the API Documentation, you can create a new milestone using the command newFixFor. I'm using the command, and it returns the created milestone successfully. However, when I go into fogbugz and view the milestone under projects, it is…
claudio
  • 1,465
  • 16
  • 26
1
2