pipeline_deals 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +47 -8
- data/lib/pipeline_deals.rb +5 -4
- data/lib/pipeline_deals/admin_resource.rb +6 -0
- data/lib/{collection.rb → pipeline_deals/collection.rb} +0 -0
- data/lib/{resource.rb → pipeline_deals/resource.rb} +3 -1
- data/lib/{resources → pipeline_deals/resources}/company.rb +0 -0
- data/lib/pipeline_deals/resources/company_custom_field_label.rb +4 -0
- data/lib/pipeline_deals/resources/custom_field_label_dropdown_entry.rb +4 -0
- data/lib/pipeline_deals/resources/deal.rb +10 -0
- data/lib/pipeline_deals/resources/deal_custom_field_label.rb +4 -0
- data/lib/pipeline_deals/resources/deal_stage.rb +4 -0
- data/lib/pipeline_deals/resources/definitions.rb +21 -0
- data/lib/pipeline_deals/resources/event_category.rb +5 -0
- data/lib/pipeline_deals/resources/lead_source.rb +5 -0
- data/lib/pipeline_deals/resources/lead_status.rb +4 -0
- data/lib/pipeline_deals/resources/note_category.rb +5 -0
- data/lib/{resources → pipeline_deals/resources}/person.rb +0 -0
- data/lib/pipeline_deals/resources/person_custom_field_label.rb +4 -0
- data/lib/pipeline_deals/resources/predefined_contacts_tags.rb +5 -0
- data/lib/{resources → pipeline_deals/resources}/user.rb +1 -0
- data/lib/{version.rb → pipeline_deals/version.rb} +1 -1
- data/pipeline_deals.gemspec +1 -1
- data/spec/cassettes/deal_user.yml +46 -0
- data/spec/cassettes/get_a_deal.yml +51 -0
- data/spec/cassettes/list_deal_stages.yml +47 -0
- data/spec/cassettes/list_deals.yml +10 -528
- data/spec/cassettes/paginate_deals.yml +12 -33
- data/spec/cassettes/update_deal.yml +104 -0
- data/spec/cassettes/update_lead_source.yml +197 -0
- data/spec/pipeline_deals/admin_spec.rb +14 -0
- data/spec/pipeline_deals/deals_spec.rb +53 -0
- data/spec/spec_helper.rb +4 -0
- metadata +38 -13
- data/lib/resources/deal.rb +0 -56
- data/lib/resources/definitions.rb +0 -10
- data/spec/pipelinedeals_spec.rb +0 -53
data/README.md
CHANGED
@@ -24,11 +24,10 @@ First and foremost, register your api key:
|
|
24
24
|
PipelineDeals.api_key = 'abcd1234'
|
25
25
|
```
|
26
26
|
|
27
|
-
|
28
|
-
### Getting a single deal, person, or company:
|
27
|
+
## Getting a single deal, person, or company:
|
29
28
|
|
30
29
|
```ruby
|
31
|
-
deal = Deal.find(1234) # find the deal
|
30
|
+
deal = PipelineDeals::Deal.find(1234) # find the deal
|
32
31
|
deal.name = 'blah2' # change an attribute
|
33
32
|
deal.save # re-save the deal to the site
|
34
33
|
deal.people # associations are respected
|
@@ -36,15 +35,55 @@ deal.people.first.id
|
|
36
35
|
deal.person_ids
|
37
36
|
```
|
38
37
|
|
39
|
-
|
38
|
+
## Fetching collections of deals, people, or companies
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
deals = PipelineDeals::Deal.find(:all) # find(:all) is supported
|
42
|
+
deals = PipelineDeals::Deal.find(:all, params: {conditions: {deal_name: 'blah'}})
|
43
|
+
deals = PipelineDeals::Deal.where(conditions: {deal_name: 'blah'})
|
44
|
+
```
|
45
|
+
|
46
|
+
### Filtering
|
47
|
+
|
48
|
+
You can filter your list by adding a `conditions` parameter. All
|
49
|
+
conditions are listed in the [Pipelinedeals API documentation](https://www.pipelinedeals.com/api/docs)
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
deals = PipelineDeals::Deal.where(conditions: {deal_value: {from: '500', to: '1000'}})
|
53
|
+
```
|
54
|
+
|
55
|
+
### Pagination
|
56
|
+
|
57
|
+
All list of things in the PipelineDeals API are paginated. The default number of items per page is 200.
|
58
|
+
|
59
|
+
You can access the current page and total by calling `.pagination` on the list:
|
60
|
+
|
61
|
+
```ruby
|
62
|
+
deals = PipelineDeals::Deal.find(:all)
|
63
|
+
deals.pagination
|
64
|
+
=> {"per_page"=>200, "total"=>14, "page_var"=>"page", "pages"=>1, "page"=>1}
|
65
|
+
```
|
66
|
+
|
67
|
+
You can modify the page you are on when requesting:
|
40
68
|
|
41
69
|
```ruby
|
42
|
-
deals = Deal.find(:all)
|
43
|
-
|
44
|
-
deals = Deal.
|
45
|
-
deals = Deal.where(conditions: {deal_name: 'blah'})
|
70
|
+
deals = PipelineDeals::Deal.find(:all, params: { page: 2})
|
71
|
+
# or you can use where
|
72
|
+
deals = Deal.where({page: 2})
|
46
73
|
```
|
47
74
|
|
75
|
+
You can modify the number per page as well:
|
76
|
+
|
77
|
+
```ruby
|
78
|
+
deals = PipelineDeals::Deal.where(per_page: 2, page: 3)
|
79
|
+
deals.pagination
|
80
|
+
=> {"per_page"=>3, "total"=>14, "page_var"=>"page", "pages"=>8, "page"=>2}
|
81
|
+
```
|
82
|
+
|
83
|
+
## Admin data
|
84
|
+
|
85
|
+
Admin data is currently read-only.
|
86
|
+
|
48
87
|
## Contributing
|
49
88
|
|
50
89
|
1. Fork it
|
data/lib/pipeline_deals.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'active_resource'
|
3
|
-
require_relative 'collection'
|
4
|
-
require_relative 'resource'
|
5
|
-
require_relative '
|
6
|
-
require_relative '
|
3
|
+
require_relative 'pipeline_deals/collection'
|
4
|
+
require_relative 'pipeline_deals/resource'
|
5
|
+
require_relative 'pipeline_deals/admin_resource'
|
6
|
+
require_relative 'pipeline_deals/resources/definitions.rb'
|
7
|
+
require_relative 'pipeline_deals/version'
|
7
8
|
|
8
9
|
Dir[File.dirname(__FILE__) + '/resources/*.rb'].each {|file| require file }
|
9
10
|
|
File without changes
|
@@ -1,8 +1,10 @@
|
|
1
1
|
module PipelineDeals
|
2
2
|
class Resource < ActiveResource::Base
|
3
|
-
self.site = "https://api.pipelinedeals.com
|
3
|
+
self.site = "https://api.pipelinedeals.com"
|
4
|
+
self.prefix = "/api/v3/"
|
4
5
|
self.collection_parser = PipelineDeals::Collection
|
5
6
|
|
7
|
+
|
6
8
|
def self.find(*arguments)
|
7
9
|
scope = arguments.slice!(0)
|
8
10
|
options = arguments.slice!(0) || {}
|
File without changes
|
@@ -0,0 +1,10 @@
|
|
1
|
+
module PipelineDeals
|
2
|
+
class Deal < PipelineDeals::Resource
|
3
|
+
has_many :people, :class_name => PipelineDeals::Person
|
4
|
+
has_one :primary_contact, :class_name => PipelineDeals::Person
|
5
|
+
has_one :company, :class_name => PipelineDeals::Company
|
6
|
+
belongs_to :user, :class_name => PipelineDeals::User
|
7
|
+
belongs_to :deal_stage, :class_name => PipelineDeals::DealStage
|
8
|
+
belongs_to :source, :class_name => PipelineDeals::LeadSource, :foreign_key => :source_id
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module PipelineDeals
|
2
|
+
class Deal < PipelineDeals::Resource; end
|
3
|
+
class Person < PipelineDeals::Resource; end
|
4
|
+
class Company < PipelineDeals::Resource; end
|
5
|
+
class Activity < PipelineDeals::Resource; end
|
6
|
+
class CalendarTask < PipelineDeals::Resource; end
|
7
|
+
class CalendarEvent < PipelineDeals::Resource; end
|
8
|
+
class Document < PipelineDeals::Resource; end
|
9
|
+
class User < PipelineDeals::Resource; end
|
10
|
+
|
11
|
+
class DealStage < PipelineDeals::AdminResource; end
|
12
|
+
class NoteCategory < PipelineDeals::AdminResource; end
|
13
|
+
class DealCustomFieldLabel < PipelineDeals::AdminResource; end
|
14
|
+
class PersonCustomFieldLabel < PipelineDeals::AdminResource; end
|
15
|
+
class CompanyCustomFieldLabel < PipelineDeals::AdminResource; end
|
16
|
+
class CustomFieldLabelDropdownEntry < PipelineDeals::AdminResource; end
|
17
|
+
class LeadStatus < PipelineDeals::AdminResource; end
|
18
|
+
class LeadSource < PipelineDeals::AdminResource; end
|
19
|
+
class PredefinedContactTag < PipelineDeals::AdminResource; end
|
20
|
+
class EventCategory < PipelineDeals::AdminResource; end
|
21
|
+
end
|
File without changes
|
data/pipeline_deals.gemspec
CHANGED
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://localhost:3000/api/v3/users/1.json?api_key=iJHyFkMUBSfjUovt29
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Sat, 15 Jun 2013 00:09:12 GMT
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Connection:
|
26
|
+
- close
|
27
|
+
Cache-Control:
|
28
|
+
- private, max-age=0, must-revalidate
|
29
|
+
Set-Cookie:
|
30
|
+
- _session_id=aa330b07b208b449b4284b83ffbb73b8; path=/; HttpOnly
|
31
|
+
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
32
|
+
00:00:00 GMT
|
33
|
+
Content-Type:
|
34
|
+
- application/json; charset=utf-8
|
35
|
+
Etag:
|
36
|
+
- ! '"283ceab1fae4bd0766f9431a16ab9496"'
|
37
|
+
Content-Length:
|
38
|
+
- '74'
|
39
|
+
X-Runtime:
|
40
|
+
- '31'
|
41
|
+
body:
|
42
|
+
encoding: US-ASCII
|
43
|
+
string: ! '{"first_name":"hobo","id":1,"avatar_thumb_url":null,"last_name":"hoboson"}'
|
44
|
+
http_version:
|
45
|
+
recorded_at: Sat, 15 Jun 2013 00:09:12 GMT
|
46
|
+
recorded_with: VCR 2.3.0
|
@@ -0,0 +1,51 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://localhost:3000/api/v3/deals/1.json?api_key=iJHyFkMUBSfjUovt29
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Fri, 14 Jun 2013 23:55:57 GMT
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Connection:
|
26
|
+
- close
|
27
|
+
Cache-Control:
|
28
|
+
- private, max-age=0, must-revalidate
|
29
|
+
Set-Cookie:
|
30
|
+
- _session_id=e66110dbd39c24caf3660569b8ed9b6e; path=/; HttpOnly
|
31
|
+
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
32
|
+
00:00:00 GMT
|
33
|
+
Content-Type:
|
34
|
+
- application/json; charset=utf-8
|
35
|
+
Etag:
|
36
|
+
- ! '"df75fd71847d9713b362b1a71487bf70"'
|
37
|
+
Content-Length:
|
38
|
+
- '853'
|
39
|
+
X-Runtime:
|
40
|
+
- '235'
|
41
|
+
body:
|
42
|
+
encoding: US-ASCII
|
43
|
+
string: ! '{"value_in_cents":45600,"is_example":null,"company_id":null,"shared_user_ids":[],"user_id":1,"import_id":null,"deal_stage_id":2,"deal_stage":{"percent":10,"id":2,"name":"Qualified
|
44
|
+
Lead"},"collaborators":[],"company":null,"summary":null,"possible_notify_user_ids":[],"updated_at":"2013/06/14
|
45
|
+
19:54:48 -0400","source_id":2,"source":{"id":2,"name":"Cold Call"},"probability":0,"primary_contact_id":null,"created_at":"2013/05/31
|
46
|
+
13:10:26 -0400","expected_close_date_event_id":null,"id":1,"expected_close_date":null,"primary_contact":null,"user":{"last_name":"hoboson","first_name":"hobo","id":1},"closed_time":"2013/06/03
|
47
|
+
15:25:21 -0400","custom_fields":{"custom_label_29":10,"custom_label_28":0,"custom_label_27":8,"custom_label_26":5,"custom_label_25":2},"person_ids":[],"status":2,"name":"architect
|
48
|
+
open-source bandwidth","people":[],"is_archived":false}'
|
49
|
+
http_version:
|
50
|
+
recorded_at: Fri, 14 Jun 2013 23:55:57 GMT
|
51
|
+
recorded_with: VCR 2.3.0
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://localhost:3000/api/v3/admin/deal_stages.json?api_key=iJHyFkMUBSfjUovt29
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Fri, 14 Jun 2013 23:55:57 GMT
|
23
|
+
Status:
|
24
|
+
- 200 OK
|
25
|
+
Connection:
|
26
|
+
- close
|
27
|
+
Cache-Control:
|
28
|
+
- private, max-age=0, must-revalidate
|
29
|
+
Set-Cookie:
|
30
|
+
- _session_id=d329c8ead2b23f22ad0afd88ec46fa07; path=/; HttpOnly
|
31
|
+
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
32
|
+
00:00:00 GMT
|
33
|
+
Content-Type:
|
34
|
+
- application/json; charset=utf-8
|
35
|
+
Etag:
|
36
|
+
- ! '"5db0b1752a320967ad4c9e489a69bb02"'
|
37
|
+
Content-Length:
|
38
|
+
- '342'
|
39
|
+
X-Runtime:
|
40
|
+
- '20'
|
41
|
+
body:
|
42
|
+
encoding: US-ASCII
|
43
|
+
string: ! '{"pagination":{"per_page":200,"total":6,"pages":1,"page_var":"page","page":1},"entries":[{"percent":0,"id":1,"name":"Lost"},{"percent":10,"id":2,"name":"Qualified
|
44
|
+
Lead"},{"percent":25,"id":3,"name":"Request for Info"},{"percent":50,"id":4,"name":"Presentation"},{"percent":75,"id":5,"name":"Negotiation"},{"percent":100,"id":6,"name":"Won"}]}'
|
45
|
+
http_version:
|
46
|
+
recorded_at: Fri, 14 Jun 2013 23:55:57 GMT
|
47
|
+
recorded_with: VCR 2.3.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://
|
5
|
+
uri: http://localhost:3000/api/v3/deals.json?api_key=xxxkeyxxx
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -15,544 +15,26 @@ http_interactions:
|
|
15
15
|
- Ruby
|
16
16
|
response:
|
17
17
|
status:
|
18
|
-
code:
|
19
|
-
message:
|
18
|
+
code: 406
|
19
|
+
message: Not Acceptable
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Fri, 14 Jun 2013 23:55:59 GMT
|
23
23
|
Status:
|
24
|
-
-
|
24
|
+
- 406 Not Acceptable
|
25
25
|
Connection:
|
26
26
|
- close
|
27
|
-
Set-Cookie:
|
28
|
-
- _session_id=fc72e3844041f9d47ed1edd6fa9b0520; path=/; HttpOnly
|
29
|
-
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
30
|
-
00:00:00 GMT
|
31
|
-
Content-Length:
|
32
|
-
- '828'
|
33
|
-
Content-Type:
|
34
|
-
- application/json; charset=utf-8
|
35
27
|
Cache-Control:
|
36
|
-
-
|
37
|
-
Etag:
|
38
|
-
- ! '"8215d9bc90a1c2943294a37fa3ff67e3"'
|
39
|
-
X-Runtime:
|
40
|
-
- '39'
|
41
|
-
body:
|
42
|
-
encoding: US-ASCII
|
43
|
-
string: ! '{"summary":null,"primary_contact_id":24,"expected_close_date":null,"deal_stage_id":null,"name":"blah2","primary_contact":{"id":24,"last_name":"buttface","first_name":"Jo"},"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
44
|
-
10:09:41 -0400","company":null,"person_ids":[24,25],"collaborators":[],"people":[{"id":24,"last_name":"buttface","first_name":"Jo"},{"id":25,"last_name":"O''Kon","first_name":"Sherman"}],"status":2,"custom_fields":{"custom_label_29":54321,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":99,"is_archived":false,"closed_time":null,"deal_stage":null,"id":1,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5588600,"import_id":null,"updated_at":"2013/04/19
|
45
|
-
18:18:36 -0400","expected_close_date_event_id":null}'
|
46
|
-
http_version:
|
47
|
-
recorded_at: Mon, 22 Apr 2013 21:09:07 GMT
|
48
|
-
- request:
|
49
|
-
method: get
|
50
|
-
uri: http://127.0.0.1:3000/api/v3/people/24.json?api_key=n8PJJWRsx0MxgOEwGk7
|
51
|
-
body:
|
52
|
-
encoding: US-ASCII
|
53
|
-
string: ''
|
54
|
-
headers:
|
55
|
-
Accept:
|
56
|
-
- application/json
|
57
|
-
Accept-Encoding:
|
58
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
59
|
-
User-Agent:
|
60
|
-
- Ruby
|
61
|
-
response:
|
62
|
-
status:
|
63
|
-
code: 200
|
64
|
-
message: OK
|
65
|
-
headers:
|
66
|
-
Date:
|
67
|
-
- Mon, 22 Apr 2013 21:12:57 GMT
|
68
|
-
Status:
|
69
|
-
- 200 OK
|
70
|
-
Connection:
|
71
|
-
- close
|
72
|
-
Set-Cookie:
|
73
|
-
- _session_id=713ca9415a799287b43e3a65544ec711; path=/; HttpOnly
|
74
|
-
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
75
|
-
00:00:00 GMT
|
76
|
-
Content-Length:
|
77
|
-
- '1149'
|
28
|
+
- no-cache
|
78
29
|
Content-Type:
|
79
30
|
- application/json; charset=utf-8
|
80
|
-
Cache-Control:
|
81
|
-
- private, max-age=0, must-revalidate
|
82
|
-
Etag:
|
83
|
-
- ! '"5b95cb14fadaec7c70a9131e2af660c8"'
|
84
|
-
X-Runtime:
|
85
|
-
- '50'
|
86
|
-
body:
|
87
|
-
encoding: US-ASCII
|
88
|
-
string: ! '{"work_address_2":null,"work_address_1":null,"linked_in_url":null,"last_name":"buttface","position":null,"instant_message":null,"home_address_2":null,"home_address_1":null,"email2":null,"total_pipeline":55886,"company_name":"Kunze-Cole","work_state":null,"work_postal_code":null,"work_country":null,"user_id":1,"company_id":24,"deal_ids":[1],"twitter":null,"home_postal_code":null,"home_country":null,"created_at":"2013/04/16
|
89
|
-
10:09:39 -0400","lead_source":null,"predefined_contacts_tags":[],"company":{"name":"Kunze-Cole","deal_ids":[],"id":24,"image_thumb_url":"/images/thumb/missing_company.png"},"won_deals_total":0,"mobile":null,"email":null,"home_email":null,"home_city":null,"custom_fields":{},"website":null,"first_name":"Jo","deals":[{"name":"blah2","company_name":null,"id":1}],"id":24,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"image_thumb_url":"/images/thumb/missing.png","work_city":null,"type":"Contact","fax":null,"facebook_url":null,"predefined_contacts_tag_ids":[],"full_name":"Jo
|
90
|
-
buttface","viewed_at":null,"phone":null,"home_state":null,"home_phone":null,"lead_status":null,"updated_at":"2013/04/19
|
91
|
-
18:20:23 -0400"}'
|
92
|
-
http_version:
|
93
|
-
recorded_at: Mon, 22 Apr 2013 21:12:57 GMT
|
94
|
-
- request:
|
95
|
-
method: get
|
96
|
-
uri: http://127.0.0.1:3000/api/v3/deals.json?api_key=n8PJJWRsx0MxgOEwGk7
|
97
|
-
body:
|
98
|
-
encoding: US-ASCII
|
99
|
-
string: ''
|
100
|
-
headers:
|
101
|
-
Accept:
|
102
|
-
- application/json
|
103
|
-
Accept-Encoding:
|
104
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
105
|
-
User-Agent:
|
106
|
-
- Ruby
|
107
|
-
response:
|
108
|
-
status:
|
109
|
-
code: 200
|
110
|
-
message: OK
|
111
|
-
headers:
|
112
|
-
Date:
|
113
|
-
- Mon, 22 Apr 2013 21:16:05 GMT
|
114
|
-
Status:
|
115
|
-
- 200 OK
|
116
|
-
Connection:
|
117
|
-
- close
|
118
|
-
Set-Cookie:
|
119
|
-
- _session_id=350424aa5da10e9714c0a13b748d6577; path=/; HttpOnly
|
120
|
-
- is_legacy_user=; domain=pipelinedeals.com; path=/; expires=Thu, 01-Jan-1970
|
121
|
-
00:00:00 GMT
|
122
31
|
Content-Length:
|
123
|
-
- '
|
124
|
-
Content-Type:
|
125
|
-
- application/json; charset=utf-8
|
126
|
-
Cache-Control:
|
127
|
-
- private, max-age=0, must-revalidate
|
128
|
-
Etag:
|
129
|
-
- ! '"cf113d4e866e73fcd1335d54070b3ff0"'
|
32
|
+
- '27'
|
130
33
|
X-Runtime:
|
131
|
-
- '
|
34
|
+
- '12'
|
132
35
|
body:
|
133
36
|
encoding: US-ASCII
|
134
|
-
string: ! '{"
|
135
|
-
10:09:41 -0400","company":null,"person_ids":[24,25],"collaborators":[],"people":[{"id":24,"last_name":"buttface","first_name":"Jo"},{"id":25,"last_name":"O''Kon","first_name":"Sherman"}],"status":2,"custom_fields":{"custom_label_29":54321,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":99,"is_archived":false,"closed_time":null,"deal_stage":null,"id":1,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5588600,"import_id":null,"updated_at":"2013/04/19
|
136
|
-
18:18:36 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"streamline
|
137
|
-
killer convergence","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
138
|
-
10:09:42 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":33,"is_archived":false,"closed_time":null,"deal_stage":null,"id":2,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1800305,"import_id":null,"updated_at":"2013/04/16
|
139
|
-
10:09:42 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
140
|
-
one-to-one initiatives","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
141
|
-
10:09:42 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":15,"is_archived":false,"closed_time":null,"deal_stage":null,"id":3,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":917222,"import_id":null,"updated_at":"2013/04/16
|
142
|
-
10:09:43 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"deploy
|
143
|
-
next-generation e-tailers","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
144
|
-
10:09:43 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":56,"is_archived":false,"closed_time":null,"deal_stage":null,"id":4,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2288127,"import_id":null,"updated_at":"2013/04/16
|
145
|
-
10:09:43 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
146
|
-
revolutionary partnerships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
147
|
-
10:09:43 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":82,"is_archived":false,"closed_time":null,"deal_stage":null,"id":5,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4345319,"import_id":null,"updated_at":"2013/04/16
|
148
|
-
10:09:43 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"monetize
|
149
|
-
strategic ROI","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
150
|
-
10:09:43 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":39,"is_archived":false,"closed_time":null,"deal_stage":null,"id":6,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":365857,"import_id":null,"updated_at":"2013/04/16
|
151
|
-
10:09:44 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
152
|
-
B2C ROI","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
153
|
-
10:09:44 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":2,"is_archived":false,"closed_time":null,"deal_stage":null,"id":7,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7919635,"import_id":null,"updated_at":"2013/04/16
|
154
|
-
10:09:44 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"cultivate
|
155
|
-
back-end models","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
156
|
-
10:09:44 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":8,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4737478,"import_id":null,"updated_at":"2013/04/16
|
157
|
-
10:09:44 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"deliver
|
158
|
-
ubiquitous infrastructures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
159
|
-
10:09:44 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":4,"is_archived":false,"closed_time":null,"deal_stage":null,"id":9,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8211008,"import_id":null,"updated_at":"2013/04/16
|
160
|
-
10:09:44 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"brand
|
161
|
-
leading-edge e-tailers","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
162
|
-
10:09:45 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":40,"is_archived":false,"closed_time":null,"deal_stage":null,"id":10,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6172077,"import_id":null,"updated_at":"2013/04/16
|
163
|
-
10:09:45 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
164
|
-
visionary convergence","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
165
|
-
10:09:45 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":63,"is_archived":false,"closed_time":null,"deal_stage":null,"id":11,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8851368,"import_id":null,"updated_at":"2013/04/16
|
166
|
-
10:09:45 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"facilitate
|
167
|
-
back-end vortals","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
168
|
-
10:09:45 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":99,"is_archived":false,"closed_time":null,"deal_stage":null,"id":12,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9644455,"import_id":null,"updated_at":"2013/04/16
|
169
|
-
10:09:45 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"syndicate
|
170
|
-
robust paradigms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
171
|
-
10:09:46 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":12,"is_archived":false,"closed_time":null,"deal_stage":null,"id":13,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2363253,"import_id":null,"updated_at":"2013/04/16
|
172
|
-
10:09:46 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"engineer
|
173
|
-
rich deliverables","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
174
|
-
10:09:46 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":86,"is_archived":false,"closed_time":null,"deal_stage":null,"id":14,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7534480,"import_id":null,"updated_at":"2013/04/16
|
175
|
-
10:09:47 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"streamline
|
176
|
-
proactive eyeballs","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
177
|
-
10:09:47 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":21,"is_archived":false,"closed_time":null,"deal_stage":null,"id":15,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1914877,"import_id":null,"updated_at":"2013/04/16
|
178
|
-
10:09:47 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"facilitate
|
179
|
-
user-centric solutions","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
180
|
-
10:09:47 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":49,"is_archived":false,"closed_time":null,"deal_stage":null,"id":16,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8756931,"import_id":null,"updated_at":"2013/04/16
|
181
|
-
10:09:47 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"exploit
|
182
|
-
efficient e-commerce","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
183
|
-
10:09:47 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":56,"is_archived":false,"closed_time":null,"deal_stage":null,"id":17,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1793898,"import_id":null,"updated_at":"2013/04/16
|
184
|
-
10:09:47 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"redefine
|
185
|
-
proactive models","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
186
|
-
10:09:47 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":54,"is_archived":false,"closed_time":null,"deal_stage":null,"id":18,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2510347,"import_id":null,"updated_at":"2013/04/16
|
187
|
-
10:09:48 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"morph
|
188
|
-
plug-and-play functionalities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
189
|
-
10:09:48 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":75,"is_archived":false,"closed_time":null,"deal_stage":null,"id":19,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6121780,"import_id":null,"updated_at":"2013/04/16
|
190
|
-
10:09:48 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"synergize
|
191
|
-
killer methodologies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
192
|
-
10:09:48 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":86,"is_archived":false,"closed_time":null,"deal_stage":null,"id":20,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1868846,"import_id":null,"updated_at":"2013/04/16
|
193
|
-
10:09:48 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"synthesize
|
194
|
-
vertical supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
195
|
-
10:09:48 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":3,"is_archived":false,"closed_time":null,"deal_stage":null,"id":21,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":637754,"import_id":null,"updated_at":"2013/04/16
|
196
|
-
10:09:48 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"whiteboard
|
197
|
-
mission-critical networks","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
198
|
-
10:09:48 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":85,"is_archived":false,"closed_time":null,"deal_stage":null,"id":22,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6734591,"import_id":null,"updated_at":"2013/04/16
|
199
|
-
10:09:49 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"e-enable
|
200
|
-
strategic eyeballs","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
201
|
-
10:09:49 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":76,"is_archived":false,"closed_time":null,"deal_stage":null,"id":23,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3706056,"import_id":null,"updated_at":"2013/04/16
|
202
|
-
10:09:49 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"visualize
|
203
|
-
scalable experiences","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
204
|
-
10:09:49 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":55,"is_archived":false,"closed_time":null,"deal_stage":null,"id":24,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2603679,"import_id":null,"updated_at":"2013/04/16
|
205
|
-
10:09:50 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"benchmark
|
206
|
-
mission-critical functionalities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
207
|
-
10:09:50 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":25,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6913071,"import_id":null,"updated_at":"2013/04/16
|
208
|
-
10:09:50 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"e-enable
|
209
|
-
user-centric channels","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
210
|
-
10:09:50 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":26,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5660097,"import_id":null,"updated_at":"2013/04/16
|
211
|
-
10:09:50 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"streamline
|
212
|
-
B2C metrics","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
213
|
-
10:09:50 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":21,"is_archived":false,"closed_time":null,"deal_stage":null,"id":27,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2205386,"import_id":null,"updated_at":"2013/04/16
|
214
|
-
10:09:50 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"facilitate
|
215
|
-
one-to-one partnerships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
216
|
-
10:09:50 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":28,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5752052,"import_id":null,"updated_at":"2013/04/16
|
217
|
-
10:09:51 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enable
|
218
|
-
B2C synergies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
219
|
-
10:09:51 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":25,"is_archived":false,"closed_time":null,"deal_stage":null,"id":29,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8545887,"import_id":null,"updated_at":"2013/04/16
|
220
|
-
10:09:51 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enable
|
221
|
-
efficient web services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
222
|
-
10:09:51 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":91,"is_archived":false,"closed_time":null,"deal_stage":null,"id":30,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":656541,"import_id":null,"updated_at":"2013/04/16
|
223
|
-
10:09:51 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"exploit
|
224
|
-
granular relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
225
|
-
10:09:51 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":18,"is_archived":false,"closed_time":null,"deal_stage":null,"id":31,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8185836,"import_id":null,"updated_at":"2013/04/16
|
226
|
-
10:09:52 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"seize
|
227
|
-
dot-com e-business","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
228
|
-
10:09:52 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":6,"is_archived":false,"closed_time":null,"deal_stage":null,"id":32,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2054502,"import_id":null,"updated_at":"2013/04/16
|
229
|
-
10:09:52 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"embrace
|
230
|
-
user-centric experiences","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
231
|
-
10:09:52 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":54,"is_archived":false,"closed_time":null,"deal_stage":null,"id":33,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3863239,"import_id":null,"updated_at":"2013/04/16
|
232
|
-
10:09:53 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
233
|
-
front-end action-items","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
234
|
-
10:09:53 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":54,"is_archived":false,"closed_time":null,"deal_stage":null,"id":34,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6735469,"import_id":null,"updated_at":"2013/04/16
|
235
|
-
10:09:53 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"envisioneer
|
236
|
-
out-of-the-box supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
237
|
-
10:09:53 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":5,"is_archived":false,"closed_time":null,"deal_stage":null,"id":35,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4635761,"import_id":null,"updated_at":"2013/04/16
|
238
|
-
10:09:53 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"innovate
|
239
|
-
value-added e-services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
240
|
-
10:09:53 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":52,"is_archived":false,"closed_time":null,"deal_stage":null,"id":36,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8806426,"import_id":null,"updated_at":"2013/04/16
|
241
|
-
10:09:54 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
242
|
-
viral technologies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
243
|
-
10:09:54 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":37,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4697827,"import_id":null,"updated_at":"2013/04/16
|
244
|
-
10:09:54 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"streamline
|
245
|
-
rich supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
246
|
-
10:09:54 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":54,"is_archived":false,"closed_time":null,"deal_stage":null,"id":38,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7010318,"import_id":null,"updated_at":"2013/04/16
|
247
|
-
10:09:54 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incubate
|
248
|
-
extensible eyeballs","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
249
|
-
10:09:54 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":43,"is_archived":false,"closed_time":null,"deal_stage":null,"id":39,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8480433,"import_id":null,"updated_at":"2013/04/16
|
250
|
-
10:09:55 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"target
|
251
|
-
vertical models","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
252
|
-
10:09:55 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":40,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8153993,"import_id":null,"updated_at":"2013/04/16
|
253
|
-
10:09:55 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"maximize
|
254
|
-
sexy experiences","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
255
|
-
10:09:55 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":41,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3304874,"import_id":null,"updated_at":"2013/04/16
|
256
|
-
10:09:56 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"leverage
|
257
|
-
holistic portals","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
258
|
-
10:09:56 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":97,"is_archived":false,"closed_time":null,"deal_stage":null,"id":42,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8936544,"import_id":null,"updated_at":"2013/04/16
|
259
|
-
10:09:56 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"redefine
|
260
|
-
transparent e-tailers","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
261
|
-
10:09:56 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":92,"is_archived":false,"closed_time":null,"deal_stage":null,"id":43,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":721308,"import_id":null,"updated_at":"2013/04/16
|
262
|
-
10:09:57 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incubate
|
263
|
-
dot-com e-business","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
264
|
-
10:09:57 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":52,"is_archived":false,"closed_time":null,"deal_stage":null,"id":44,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7314749,"import_id":null,"updated_at":"2013/04/16
|
265
|
-
10:09:57 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"aggregate
|
266
|
-
out-of-the-box solutions","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
267
|
-
10:09:57 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":88,"is_archived":false,"closed_time":null,"deal_stage":null,"id":45,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1865121,"import_id":null,"updated_at":"2013/04/16
|
268
|
-
10:09:57 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"unleash
|
269
|
-
robust architectures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
270
|
-
10:09:57 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":33,"is_archived":false,"closed_time":null,"deal_stage":null,"id":46,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7089499,"import_id":null,"updated_at":"2013/04/16
|
271
|
-
10:09:58 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"scale
|
272
|
-
distributed relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
273
|
-
10:09:58 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":60,"is_archived":false,"closed_time":null,"deal_stage":null,"id":47,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2664549,"import_id":null,"updated_at":"2013/04/16
|
274
|
-
10:09:58 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"recontextualize
|
275
|
-
revolutionary deliverables","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
276
|
-
10:09:58 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":84,"is_archived":false,"closed_time":null,"deal_stage":null,"id":48,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2610978,"import_id":null,"updated_at":"2013/04/16
|
277
|
-
10:09:58 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"brand
|
278
|
-
seamless supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
279
|
-
10:09:58 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":30,"is_archived":false,"closed_time":null,"deal_stage":null,"id":49,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4165048,"import_id":null,"updated_at":"2013/04/16
|
280
|
-
10:09:59 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"envisioneer
|
281
|
-
cross-media e-services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
282
|
-
10:09:59 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":45,"is_archived":false,"closed_time":null,"deal_stage":null,"id":50,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5451836,"import_id":null,"updated_at":"2013/04/16
|
283
|
-
10:09:59 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"monetize
|
284
|
-
24/365 infrastructures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
285
|
-
10:09:59 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":56,"is_archived":false,"closed_time":null,"deal_stage":null,"id":51,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":540266,"import_id":null,"updated_at":"2013/04/16
|
286
|
-
10:10:00 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"seize
|
287
|
-
24/7 systems","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
288
|
-
10:10:00 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":59,"is_archived":false,"closed_time":null,"deal_stage":null,"id":52,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7352966,"import_id":null,"updated_at":"2013/04/16
|
289
|
-
10:10:00 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"harness
|
290
|
-
world-class vortals","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
291
|
-
10:10:00 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":97,"is_archived":false,"closed_time":null,"deal_stage":null,"id":53,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6056711,"import_id":null,"updated_at":"2013/04/16
|
292
|
-
10:10:00 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"evolve
|
293
|
-
front-end metrics","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
294
|
-
10:10:00 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":76,"is_archived":false,"closed_time":null,"deal_stage":null,"id":54,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6266214,"import_id":null,"updated_at":"2013/04/16
|
295
|
-
10:10:01 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"utilize
|
296
|
-
compelling partnerships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
297
|
-
10:10:01 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":29,"is_archived":false,"closed_time":null,"deal_stage":null,"id":55,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9155277,"import_id":null,"updated_at":"2013/04/16
|
298
|
-
10:10:01 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
299
|
-
robust ROI","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
300
|
-
10:10:01 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":47,"is_archived":false,"closed_time":null,"deal_stage":null,"id":56,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8760640,"import_id":null,"updated_at":"2013/04/16
|
301
|
-
10:10:02 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"aggregate
|
302
|
-
sticky e-tailers","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
303
|
-
10:10:02 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":8,"is_archived":false,"closed_time":null,"deal_stage":null,"id":57,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6088157,"import_id":null,"updated_at":"2013/04/16
|
304
|
-
10:10:02 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"visualize
|
305
|
-
impactful deliverables","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
306
|
-
10:10:02 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":60,"is_archived":false,"closed_time":null,"deal_stage":null,"id":58,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3633792,"import_id":null,"updated_at":"2013/04/16
|
307
|
-
10:10:02 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
308
|
-
customized web services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
309
|
-
10:10:02 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":59,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4936210,"import_id":null,"updated_at":"2013/04/16
|
310
|
-
10:10:02 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"e-enable
|
311
|
-
leading-edge relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
312
|
-
10:10:02 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":54,"is_archived":false,"closed_time":null,"deal_stage":null,"id":60,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8651413,"import_id":null,"updated_at":"2013/04/16
|
313
|
-
10:10:03 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"scale
|
314
|
-
mission-critical e-business","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
315
|
-
10:10:03 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":52,"is_archived":false,"closed_time":null,"deal_stage":null,"id":61,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5459613,"import_id":null,"updated_at":"2013/04/16
|
316
|
-
10:10:03 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"synthesize
|
317
|
-
robust users","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
318
|
-
10:10:03 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":91,"is_archived":false,"closed_time":null,"deal_stage":null,"id":62,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3691334,"import_id":null,"updated_at":"2013/04/16
|
319
|
-
10:10:03 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"transform
|
320
|
-
rich mindshare","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
321
|
-
10:10:03 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":35,"is_archived":false,"closed_time":null,"deal_stage":null,"id":63,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2030904,"import_id":null,"updated_at":"2013/04/16
|
322
|
-
10:10:04 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incubate
|
323
|
-
collaborative content","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
324
|
-
10:10:04 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":22,"is_archived":false,"closed_time":null,"deal_stage":null,"id":64,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1887981,"import_id":null,"updated_at":"2013/04/16
|
325
|
-
10:10:04 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"monetize
|
326
|
-
wireless experiences","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
327
|
-
10:10:04 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":7,"is_archived":false,"closed_time":null,"deal_stage":null,"id":65,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6570027,"import_id":null,"updated_at":"2013/04/16
|
328
|
-
10:10:05 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"streamline
|
329
|
-
compelling architectures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
330
|
-
10:10:05 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":50,"is_archived":false,"closed_time":null,"deal_stage":null,"id":66,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2472559,"import_id":null,"updated_at":"2013/04/16
|
331
|
-
10:10:05 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"innovate
|
332
|
-
customized schemas","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
333
|
-
10:10:05 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":16,"is_archived":false,"closed_time":null,"deal_stage":null,"id":67,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3297209,"import_id":null,"updated_at":"2013/04/16
|
334
|
-
10:10:05 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"optimize
|
335
|
-
web-enabled networks","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
336
|
-
10:10:05 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":31,"is_archived":false,"closed_time":null,"deal_stage":null,"id":68,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1604019,"import_id":null,"updated_at":"2013/04/16
|
337
|
-
10:10:06 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"unleash
|
338
|
-
integrated relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
339
|
-
10:10:06 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":8,"is_archived":false,"closed_time":null,"deal_stage":null,"id":69,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":945408,"import_id":null,"updated_at":"2013/04/16
|
340
|
-
10:10:06 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"envisioneer
|
341
|
-
leading-edge deliverables","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
342
|
-
10:10:06 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":69,"is_archived":false,"closed_time":null,"deal_stage":null,"id":70,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2573069,"import_id":null,"updated_at":"2013/04/16
|
343
|
-
10:10:06 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"deploy
|
344
|
-
distributed relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
345
|
-
10:10:06 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":59,"is_archived":false,"closed_time":null,"deal_stage":null,"id":71,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1990661,"import_id":null,"updated_at":"2013/04/16
|
346
|
-
10:10:07 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"orchestrate
|
347
|
-
B2B systems","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
348
|
-
10:10:07 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":2,"is_archived":false,"closed_time":null,"deal_stage":null,"id":72,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":984583,"import_id":null,"updated_at":"2013/04/16
|
349
|
-
10:10:07 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"synergize
|
350
|
-
holistic architectures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
351
|
-
10:10:07 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":17,"is_archived":false,"closed_time":null,"deal_stage":null,"id":73,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8322750,"import_id":null,"updated_at":"2013/04/16
|
352
|
-
10:10:08 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"engage
|
353
|
-
out-of-the-box schemas","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
354
|
-
10:10:08 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":42,"is_archived":false,"closed_time":null,"deal_stage":null,"id":74,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4082971,"import_id":null,"updated_at":"2013/04/16
|
355
|
-
10:10:08 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"engineer
|
356
|
-
distributed supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
357
|
-
10:10:08 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":69,"is_archived":false,"closed_time":null,"deal_stage":null,"id":75,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5226244,"import_id":null,"updated_at":"2013/04/16
|
358
|
-
10:10:08 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
359
|
-
innovative networks","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
360
|
-
10:10:09 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":28,"is_archived":false,"closed_time":null,"deal_stage":null,"id":76,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2688458,"import_id":null,"updated_at":"2013/04/16
|
361
|
-
10:10:09 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"aggregate
|
362
|
-
rich deliverables","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
363
|
-
10:10:09 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":80,"is_archived":false,"closed_time":null,"deal_stage":null,"id":77,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5230113,"import_id":null,"updated_at":"2013/04/16
|
364
|
-
10:10:09 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"engage
|
365
|
-
plug-and-play schemas","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
366
|
-
10:10:09 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":39,"is_archived":false,"closed_time":null,"deal_stage":null,"id":78,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7478474,"import_id":null,"updated_at":"2013/04/16
|
367
|
-
10:10:10 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"utilize
|
368
|
-
frictionless action-items","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
369
|
-
10:10:10 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":12,"is_archived":false,"closed_time":null,"deal_stage":null,"id":79,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5385376,"import_id":null,"updated_at":"2013/04/16
|
370
|
-
10:10:10 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
371
|
-
global infomediaries","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
372
|
-
10:10:10 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":87,"is_archived":false,"closed_time":null,"deal_stage":null,"id":80,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5607518,"import_id":null,"updated_at":"2013/04/16
|
373
|
-
10:10:10 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enable
|
374
|
-
sexy e-commerce","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
375
|
-
10:10:10 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":64,"is_archived":false,"closed_time":null,"deal_stage":null,"id":81,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3709173,"import_id":null,"updated_at":"2013/04/16
|
376
|
-
10:10:11 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enable
|
377
|
-
web-enabled paradigms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
378
|
-
10:10:11 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":56,"is_archived":false,"closed_time":null,"deal_stage":null,"id":82,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":791505,"import_id":null,"updated_at":"2013/04/16
|
379
|
-
10:10:11 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"reintermediate
|
380
|
-
turn-key initiatives","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
381
|
-
10:10:11 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":58,"is_archived":false,"closed_time":null,"deal_stage":null,"id":83,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9762330,"import_id":null,"updated_at":"2013/04/16
|
382
|
-
10:10:12 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"transform
|
383
|
-
B2B web-readiness","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
384
|
-
10:10:12 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":74,"is_archived":false,"closed_time":null,"deal_stage":null,"id":84,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3088306,"import_id":null,"updated_at":"2013/04/16
|
385
|
-
10:10:12 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"brand
|
386
|
-
revolutionary channels","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
387
|
-
10:10:12 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":30,"is_archived":false,"closed_time":null,"deal_stage":null,"id":85,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5653846,"import_id":null,"updated_at":"2013/04/16
|
388
|
-
10:10:12 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"transition
|
389
|
-
frictionless communities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
390
|
-
10:10:13 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":33,"is_archived":false,"closed_time":null,"deal_stage":null,"id":86,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5314470,"import_id":null,"updated_at":"2013/04/16
|
391
|
-
10:10:13 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"utilize
|
392
|
-
dot-com infomediaries","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
393
|
-
10:10:13 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":87,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9774485,"import_id":null,"updated_at":"2013/04/16
|
394
|
-
10:10:14 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"unleash
|
395
|
-
robust networks","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
396
|
-
10:10:14 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":70,"is_archived":false,"closed_time":null,"deal_stage":null,"id":88,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2654758,"import_id":null,"updated_at":"2013/04/16
|
397
|
-
10:10:14 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"benchmark
|
398
|
-
web-enabled action-items","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
399
|
-
10:10:14 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":65,"is_archived":false,"closed_time":null,"deal_stage":null,"id":89,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8462115,"import_id":null,"updated_at":"2013/04/16
|
400
|
-
10:10:14 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
401
|
-
scalable communities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
402
|
-
10:10:14 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":99,"is_archived":false,"closed_time":null,"deal_stage":null,"id":90,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":616158,"import_id":null,"updated_at":"2013/04/16
|
403
|
-
10:10:15 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incentivize
|
404
|
-
B2C convergence","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
405
|
-
10:10:15 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":9,"is_archived":false,"closed_time":null,"deal_stage":null,"id":91,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5328406,"import_id":null,"updated_at":"2013/04/16
|
406
|
-
10:10:15 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"reinvent
|
407
|
-
integrated vortals","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
408
|
-
10:10:15 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":59,"is_archived":false,"closed_time":null,"deal_stage":null,"id":92,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3663245,"import_id":null,"updated_at":"2013/04/16
|
409
|
-
10:10:16 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"harness
|
410
|
-
end-to-end e-services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
411
|
-
10:10:16 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":72,"is_archived":false,"closed_time":null,"deal_stage":null,"id":93,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7584456,"import_id":null,"updated_at":"2013/04/16
|
412
|
-
10:10:16 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"recontextualize
|
413
|
-
visionary technologies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
414
|
-
10:10:16 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":30,"is_archived":false,"closed_time":null,"deal_stage":null,"id":94,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8256065,"import_id":null,"updated_at":"2013/04/16
|
415
|
-
10:10:17 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"cultivate
|
416
|
-
customized metrics","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
417
|
-
10:10:17 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":57,"is_archived":false,"closed_time":null,"deal_stage":null,"id":95,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":862536,"import_id":null,"updated_at":"2013/04/16
|
418
|
-
10:10:17 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"productize
|
419
|
-
one-to-one action-items","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
420
|
-
10:10:17 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":22,"is_archived":false,"closed_time":null,"deal_stage":null,"id":96,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4574969,"import_id":null,"updated_at":"2013/04/16
|
421
|
-
10:10:17 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"integrate
|
422
|
-
world-class infrastructures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
423
|
-
10:10:17 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":7,"is_archived":false,"closed_time":null,"deal_stage":null,"id":97,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":561934,"import_id":null,"updated_at":"2013/04/16
|
424
|
-
10:10:17 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
425
|
-
back-end relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
426
|
-
10:10:17 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":78,"is_archived":false,"closed_time":null,"deal_stage":null,"id":98,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1972533,"import_id":null,"updated_at":"2013/04/16
|
427
|
-
10:10:18 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"strategize
|
428
|
-
seamless web services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
429
|
-
10:10:18 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":93,"is_archived":false,"closed_time":null,"deal_stage":null,"id":99,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":21063,"import_id":null,"updated_at":"2013/04/16
|
430
|
-
10:10:18 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"empower
|
431
|
-
bricks-and-clicks schemas","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
432
|
-
10:10:18 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":34,"is_archived":false,"closed_time":null,"deal_stage":null,"id":100,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4998769,"import_id":null,"updated_at":"2013/04/16
|
433
|
-
10:10:18 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"repurpose
|
434
|
-
24/7 functionalities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
435
|
-
10:10:18 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":56,"is_archived":false,"closed_time":null,"deal_stage":null,"id":101,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":8852268,"import_id":null,"updated_at":"2013/04/16
|
436
|
-
10:10:19 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
437
|
-
interactive e-services","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
438
|
-
10:10:19 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":16,"is_archived":false,"closed_time":null,"deal_stage":null,"id":102,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1046897,"import_id":null,"updated_at":"2013/04/16
|
439
|
-
10:10:19 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"innovate
|
440
|
-
24/365 content","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
441
|
-
10:10:19 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":89,"is_archived":false,"closed_time":null,"deal_stage":null,"id":103,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7300600,"import_id":null,"updated_at":"2013/04/16
|
442
|
-
10:10:20 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"deploy
|
443
|
-
seamless solutions","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
444
|
-
10:10:20 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":92,"is_archived":false,"closed_time":null,"deal_stage":null,"id":104,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9720910,"import_id":null,"updated_at":"2013/04/16
|
445
|
-
10:10:20 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"revolutionize
|
446
|
-
leading-edge technologies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
447
|
-
10:10:20 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":33,"is_archived":false,"closed_time":null,"deal_stage":null,"id":105,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9057771,"import_id":null,"updated_at":"2013/04/16
|
448
|
-
10:10:20 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"visualize
|
449
|
-
real-time action-items","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
450
|
-
10:10:20 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":15,"is_archived":false,"closed_time":null,"deal_stage":null,"id":106,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1479454,"import_id":null,"updated_at":"2013/04/16
|
451
|
-
10:10:21 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"leverage
|
452
|
-
collaborative models","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
453
|
-
10:10:21 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":107,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5586954,"import_id":null,"updated_at":"2013/04/16
|
454
|
-
10:10:21 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"evolve
|
455
|
-
24/365 eyeballs","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
456
|
-
10:10:21 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":98,"is_archived":false,"closed_time":null,"deal_stage":null,"id":108,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1830718,"import_id":null,"updated_at":"2013/04/16
|
457
|
-
10:10:22 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"generate
|
458
|
-
cutting-edge metrics","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
459
|
-
10:10:22 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":30,"is_archived":false,"closed_time":null,"deal_stage":null,"id":109,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":148389,"import_id":null,"updated_at":"2013/04/16
|
460
|
-
10:10:22 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
461
|
-
collaborative mindshare","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
462
|
-
10:10:22 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":76,"is_archived":false,"closed_time":null,"deal_stage":null,"id":110,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4438856,"import_id":null,"updated_at":"2013/04/16
|
463
|
-
10:10:22 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"reinvent
|
464
|
-
turn-key communities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
465
|
-
10:10:22 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":93,"is_archived":false,"closed_time":null,"deal_stage":null,"id":111,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5558604,"import_id":null,"updated_at":"2013/04/16
|
466
|
-
10:10:23 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"productize
|
467
|
-
frictionless platforms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
468
|
-
10:10:23 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":21,"is_archived":false,"closed_time":null,"deal_stage":null,"id":112,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5347770,"import_id":null,"updated_at":"2013/04/16
|
469
|
-
10:10:23 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"deploy
|
470
|
-
synergistic bandwidth","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
471
|
-
10:10:23 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":62,"is_archived":false,"closed_time":null,"deal_stage":null,"id":113,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5359234,"import_id":null,"updated_at":"2013/04/16
|
472
|
-
10:10:24 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"orchestrate
|
473
|
-
synergistic synergies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
474
|
-
10:10:24 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":24,"is_archived":false,"closed_time":null,"deal_stage":null,"id":114,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2374881,"import_id":null,"updated_at":"2013/04/16
|
475
|
-
10:10:24 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"grow
|
476
|
-
cross-media e-business","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
477
|
-
10:10:24 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":42,"is_archived":false,"closed_time":null,"deal_stage":null,"id":115,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4284684,"import_id":null,"updated_at":"2013/04/16
|
478
|
-
10:10:24 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"strategize
|
479
|
-
one-to-one partnerships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
480
|
-
10:10:24 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":43,"is_archived":false,"closed_time":null,"deal_stage":null,"id":116,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6378177,"import_id":null,"updated_at":"2013/04/16
|
481
|
-
10:10:25 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"strategize
|
482
|
-
rich relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
483
|
-
10:10:25 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":9,"is_archived":false,"closed_time":null,"deal_stage":null,"id":117,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7888585,"import_id":null,"updated_at":"2013/04/16
|
484
|
-
10:10:26 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
485
|
-
real-time applications","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
486
|
-
10:10:26 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":69,"is_archived":false,"closed_time":null,"deal_stage":null,"id":118,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5329620,"import_id":null,"updated_at":"2013/04/16
|
487
|
-
10:10:26 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"transition
|
488
|
-
cross-platform functionalities","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
489
|
-
10:10:26 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":31,"is_archived":false,"closed_time":null,"deal_stage":null,"id":119,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3582063,"import_id":null,"updated_at":"2013/04/16
|
490
|
-
10:10:26 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"unleash
|
491
|
-
bricks-and-clicks e-markets","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
492
|
-
10:10:26 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":18,"is_archived":false,"closed_time":null,"deal_stage":null,"id":120,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4651106,"import_id":null,"updated_at":"2013/04/16
|
493
|
-
10:10:27 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"exploit
|
494
|
-
strategic relationships","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
495
|
-
10:10:27 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":19,"is_archived":false,"closed_time":null,"deal_stage":null,"id":121,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7355997,"import_id":null,"updated_at":"2013/04/16
|
496
|
-
10:10:27 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"revolutionize
|
497
|
-
back-end paradigms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
498
|
-
10:10:27 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":68,"is_archived":false,"closed_time":null,"deal_stage":null,"id":122,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6690043,"import_id":null,"updated_at":"2013/04/16
|
499
|
-
10:10:28 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"harness
|
500
|
-
bricks-and-clicks supply-chains","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
501
|
-
10:10:28 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":93,"is_archived":false,"closed_time":null,"deal_stage":null,"id":123,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5067643,"import_id":null,"updated_at":"2013/04/16
|
502
|
-
10:10:28 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"enhance
|
503
|
-
e-business metrics","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
504
|
-
10:10:28 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":95,"is_archived":false,"closed_time":null,"deal_stage":null,"id":124,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6183137,"import_id":null,"updated_at":"2013/04/16
|
505
|
-
10:10:28 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"benchmark
|
506
|
-
impactful infomediaries","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
507
|
-
10:10:28 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":10,"is_archived":false,"closed_time":null,"deal_stage":null,"id":125,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2620243,"import_id":null,"updated_at":"2013/04/16
|
508
|
-
10:10:29 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"implement
|
509
|
-
B2B markets","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
510
|
-
10:10:29 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":126,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2096578,"import_id":null,"updated_at":"2013/04/16
|
511
|
-
10:10:29 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"expedite
|
512
|
-
front-end networks","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
513
|
-
10:10:29 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":-1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":79,"is_archived":false,"closed_time":null,"deal_stage":null,"id":127,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4283680,"import_id":null,"updated_at":"2013/04/16
|
514
|
-
10:10:29 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"synthesize
|
515
|
-
sticky synergies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
516
|
-
10:10:29 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":81,"is_archived":false,"closed_time":null,"deal_stage":null,"id":128,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2770665,"import_id":null,"updated_at":"2013/04/16
|
517
|
-
10:10:30 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incentivize
|
518
|
-
leading-edge paradigms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
519
|
-
10:10:30 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":33,"is_archived":false,"closed_time":null,"deal_stage":null,"id":129,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":7851115,"import_id":null,"updated_at":"2013/04/16
|
520
|
-
10:10:30 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"seize
|
521
|
-
next-generation interfaces","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
522
|
-
10:10:30 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":48,"is_archived":false,"closed_time":null,"deal_stage":null,"id":130,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5512026,"import_id":null,"updated_at":"2013/04/16
|
523
|
-
10:10:31 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"maximize
|
524
|
-
magnetic paradigms","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
525
|
-
10:10:31 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":1,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":88,"is_archived":false,"closed_time":null,"deal_stage":null,"id":131,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":3875644,"import_id":null,"updated_at":"2013/04/16
|
526
|
-
10:10:31 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"extend
|
527
|
-
wireless e-markets","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
528
|
-
10:10:31 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":68,"is_archived":false,"closed_time":null,"deal_stage":null,"id":132,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":5151468,"import_id":null,"updated_at":"2013/04/16
|
529
|
-
10:10:32 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"recontextualize
|
530
|
-
user-centric infrastructures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
531
|
-
10:10:32 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":0,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":53,"is_archived":false,"closed_time":null,"deal_stage":null,"id":133,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":6683013,"import_id":null,"updated_at":"2013/04/16
|
532
|
-
10:10:32 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"facilitate
|
533
|
-
sexy technologies","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
534
|
-
10:10:32 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":18,"is_archived":false,"closed_time":null,"deal_stage":null,"id":134,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":4171296,"import_id":null,"updated_at":"2013/04/16
|
535
|
-
10:10:32 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"e-enable
|
536
|
-
world-class architectures","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
537
|
-
10:10:32 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":39,"is_archived":false,"closed_time":null,"deal_stage":null,"id":135,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2145162,"import_id":null,"updated_at":"2013/04/16
|
538
|
-
10:10:33 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"architect
|
539
|
-
bleeding-edge eyeballs","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
540
|
-
10:10:33 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":4,"is_archived":false,"closed_time":null,"deal_stage":null,"id":136,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":9569774,"import_id":null,"updated_at":"2013/04/16
|
541
|
-
10:10:33 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"incubate
|
542
|
-
24/7 applications","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
543
|
-
10:10:33 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":71,"is_archived":false,"closed_time":null,"deal_stage":null,"id":137,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":2643677,"import_id":null,"updated_at":"2013/04/16
|
544
|
-
10:10:33 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"iterate
|
545
|
-
holistic convergence","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/16
|
546
|
-
10:10:34 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":2,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":78,"is_archived":false,"closed_time":null,"deal_stage":null,"id":138,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":1683014,"import_id":null,"updated_at":"2013/04/16
|
547
|
-
10:10:34 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"yeah2","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/20
|
548
|
-
11:24:10 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":null,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":null,"is_archived":false,"closed_time":null,"deal_stage":null,"id":139,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":null,"import_id":null,"updated_at":"2013/04/20
|
549
|
-
11:24:10 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"yeah2","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/20
|
550
|
-
11:25:09 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":null,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":null,"is_archived":false,"closed_time":null,"deal_stage":null,"id":140,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":null,"import_id":null,"updated_at":"2013/04/20
|
551
|
-
11:25:09 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"yeah2","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/20
|
552
|
-
11:25:29 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":null,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":null,"is_archived":false,"closed_time":null,"deal_stage":null,"id":141,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":null,"import_id":null,"updated_at":"2013/04/20
|
553
|
-
11:25:29 -0400","expected_close_date_event_id":null},{"summary":null,"primary_contact_id":null,"expected_close_date":null,"deal_stage_id":null,"name":"ass","primary_contact":null,"user_id":1,"company_id":null,"source_id":null,"is_example":null,"created_at":"2013/04/22
|
554
|
-
16:35:05 -0400","company":null,"person_ids":[],"collaborators":[],"people":[],"status":null,"custom_fields":{"custom_label_29":null,"custom_label_27":null,"custom_label_26":null,"custom_label_25":null},"probability":null,"is_archived":false,"closed_time":null,"deal_stage":null,"id":142,"user":{"id":1,"last_name":"hoboson","first_name":"hobo"},"value_in_cents":null,"import_id":null,"updated_at":"2013/04/22
|
555
|
-
16:35:05 -0400","expected_close_date_event_id":null}]}'
|
37
|
+
string: ! '{"error":"Unknown api key"}'
|
556
38
|
http_version:
|
557
|
-
recorded_at:
|
39
|
+
recorded_at: Fri, 14 Jun 2013 23:55:59 GMT
|
558
40
|
recorded_with: VCR 2.3.0
|