Questions tagged [highrise]

Highrise is a CRM for HR specialists.

46 questions
6
votes
5 answers

37signals Highrise .NET (c#) API

I am looking for a .NET (c#) wrapper for the 37signals Highrise REST API. Sadly enough, I could not find anything really suitable. Has anyone developed something like this or has links to share?
twomm
  • 551
  • 5
  • 16
5
votes
0 answers

Set site/username field ActiveResource based highrise gem

I am building a sinatra app that will use Highrise CRM gem to access Highrise data. The example code to use this gem from the wiki, require 'highrise' Highrise::Base.site = 'https://your_site.highrisehq.com' Highrise::Base.user = 'api-auth-token'…
5
votes
3 answers

Has anyone worked with this Highrise API PHP Wrapper library? I need help authenticating

So I downloaded a wrapper class from this github link: https://github.com/ignaciovazquez/Highrise-PHP-Api and I'm just trying to get any response whatsoever. So far, I can't even authenticate with my credentials so I was wondering if any who has…
racl101
  • 3,760
  • 4
  • 34
  • 33
4
votes
1 answer

Highrise API is returning a 404 error

I am working on a web app that uses Highrise to store customer info, the app uses node.js and I'm using an npm package to hit highrise's api. When I try to hit the api to add a customer it is sending a request to the correct path (/people.xml)…
jmona789
  • 2,711
  • 6
  • 24
  • 57
3
votes
1 answer

Custom fields / subject fields from Highrise API in Ruby

I'm looking for a way to modify the values of Custom fields (called subject_fields in the Highrise API somewhat confusingly). The Ruby wrapper 37signals recommends does not support these custom fields. I found a fork that has been updated more…
bookcasey
  • 39,223
  • 13
  • 77
  • 94
2
votes
2 answers

Set site/user fields in ActiveResource

I am building a sinatra app that will use Highrise CRM gem to access Highrise data. This gem is based on ActiveResource class. I want to set site, user fields for every request. I followed suggestion posted here - Is it thread safe to set Active…
2
votes
2 answers

Highrise API Example. help

I am trying to get the highrise api working with my project. total noob. I have an account, have my api key, added to my rails project like so in my controller. require 'highrise' Highrise::Base.site = 'http://MYACCOUNT.highrisehq.com' …
Fresh
  • 757
  • 1
  • 7
  • 18
2
votes
1 answer

XMLSerializer and creating an XML Array with an attribute

I'm trying to create a class that can be serialized into XML via the XMLSerializer. Destination XML should look something like this ...
Ralf
  • 1,216
  • 10
  • 20
2
votes
1 answer

How to add a Person using the Highrise Ruby gem?

I am trying to use https://github.com/tapajos/highrise/ to update user accounts when people sign up to an app. However I am not getting very far. In console I am doing: person = Highrise::Person.create(:name => "charlie") Which saves fine, but if I…
Charlie Davies
  • 1,814
  • 4
  • 29
  • 50
1
vote
3 answers

Google Apps integration to Basecamp & Highrise

I am looking for Google Apps integration for Basecamp & Highrise. Is there anything out there that will integrate: Google Contacts <-> Highrise Contacts Google Docs <-> Writeboards Google Docs <-> Files Google Tasks <-> …
Dan
  • 3,338
  • 5
  • 36
  • 58
1
vote
1 answer

Ruby Highrise API - Add Remove Tags from Person

How can one add and remove tags using the Highrise API. I believe my issue is due to the lack of knowledge in ActiveResources, which Highrise GEM is been based on. Now I tried some thing like this... person =…
Ziyan Junaideen
  • 3,270
  • 7
  • 46
  • 71
1
vote
0 answers

Highrise API using curl works, but not for adding tags

I got some code to put a contact into highrise and it works until I want to add a tag (I know Tag ID and name of it as it is in highrise) //URL to POST data to $highrise_url = 'https://user.highrisehq.com'; $api_token = 'aij dadajdloiaj…
Gero
  • 31
  • 2
1
vote
0 answers

Trouble posting XML to Node Highrise API

I am trying to make a post request to Highrise API using the npm package node-highrise-api. It takes XML and I have been getting a response from the API but unsuccessfully passing data. Here's my code: studentNote =…
wariofan1
  • 481
  • 2
  • 4
  • 17
1
vote
1 answer

Delete All Emails in a Highrise App

How do I delete all the emails in my highrise app? I don't want to delete the entire thing and start over, I've got companies and tags and metadata. What's the easiest way? This question paraphrased from Tibor Holoda's question on GetSatisfaction
Joseph Holsten
  • 20,672
  • 6
  • 25
  • 29
1
vote
1 answer

Ruby/Highrise API - Not saving phone number?

So I've been using this same block of code for about 9 months and suddenly it has stopped saving a phone number into Highrise when a new Lead is generated... Any idea where things are going sideways? I never throws an error and happily saves the…
Brett
  • 25
  • 5
1
2 3 4