Discussions

Ask a Question

What is the webhook that I should use when a deal is added or updated?

I'm using follow up boss api, and in the documentation I cannot see if there is a webhook that is executed when a deal is updated or added

Tags Applied Date Query

I want to know any means by which we can find out the date on which a particular tag is applied to a contact.

Response 400: No information about a person in the request body

I am writing some lead integration code for one of my clients to push lead registrations from his personal site to his FUB account. I've triple checked my data package I am sending over to /v1/events but I'm still getting a Response Code of 400: No information about a person in the request body. I have logged out my json string and it matches the docs online so I'm beating my head against the wall trying to figure out why it's not going through. Can you verify I'm not going crazy here? This a copy of the json data I am sending via a POST request to https://api.followupboss.com/v1/events: { "source":"MySite.com", "type":"Registration","message":"MySite Contact Request", "person":{ "firstName":"Patrick", "lastName":"Test", "emails":[{"value":"[email protected]"}], "phones":[{"value":"(910) 555-5555"}], "tags":["My Site"] } } This appears to be the correct format according to the docs online. Am I missing something? The person block is obviously in there and formatted to the specs as far as I can tell. Thanks,

API post request Error

I'm trying to send a post request to the API to https://api.followupboss.com/v1/events this is the information: array( 'source' => 'http://lasvegashousevalue.dev/', 'type' => 'Registration', 'message' => 'Property Address ,', 'description' => 'Home Condition: , Interest : , Planning To Sell: ', 'person' => array( 'firstName' => 'Test', 'lastName' => 'Api', 'emails' => array( (int) 0 => array( 'value' => '[email protected]' ) ), 'tags' => array( (int) 0 => 'seller', (int) 1 => 'PSL' ) ), 'property' => array( 'street' => '', 'city' => '', 'state' => '', 'code' => '', 'price' => '', 'type' => '', 'bedrooms' => '', 'bathrooms' => '', 'area' => '' ) ) and I'm receiving this response {"errorMessage":"Data validation failed, property record could not be saved."} I would like to know which are the validations for these request or what that the error means. Thanks