Get your own customer support community
 

Attempting to save an 'accepted' story using the API causes server side error

We're getting 500 server error response when we attempt to save certain stories using ActiveResource. It seems that stories in the 'accepted state' are causing the failure.

Here's our test case:


require 'rubygems'
require 'activeresource'

class Story < ActiveResource::Base
self.site = "http://www.pivotaltracker.com/services/v2/projects/:project_id"
headers['X-TrackerToken'] = our_api_key

end

# SUCCESS CASE
s = Story.find(1382122, :params => {:project_id => 21441})
s.save

# FAILURE CASE
s = Story.find(938184, :params => {:project_id => 21441})
s.save
 
sad I’m frustrated
Inappropriate?
1 person has this problem

The company marked this problem solved.


User_default_medium