POST
/
public
/
v1
/
contact
/
{contactId}
/
property
curl --request POST \
  --url https://api.hifello.com/public/v1/contact/{contactId}/property \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "address": "<string>"
}'
{
  "propertyId": "<string>",
  "address": {
    "aptOrUnitNumber": "6",
    "streetAddress": "Main St",
    "city": "Anytown",
    "county": "Cuyahoga",
    "state": "OH",
    "zip": "44022"
  }
}

Authorizations

x-api-key
string
header
required

The API Key generated from your Fello account.

Path Parameters

contactId
string
required

Fello's unique identifier for a contact.

Body

application/json
Property address to be associated with the contact.

The body is of type object.

Response

200
application/json
Success

The response is of type object.