Discussions

Ask a Question
Back to All

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