Create relationship
documentedCreate a new relationship for a person.
POST /peopleRelationshipsPeople Relationshipsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.followupboss.com/v1/peopleRelationships" \
-X POST \
-H "Authorization: Basic {{FOLLOWUPBOSS_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"personId": {{$person_id}}, "relationship": { "firstName": "{{$relationship_first_name}}", "lastName": "{{$relationship_last_name}}", "type": "{{$relationship_type}}", "emails": [{"value": "{{$relationship_email}}"}], "phones": [{"value": "{{$relationship_phone}}"}], "addresses": [{"street": "{{$relationship_street}}", "city": "{{$relationship_city}}", "state": "{{$relationship_state}}", "zip": "{{$relationship_zip}}", "country": "{{$relationship_country}}"}] } }'