API - Person Address Add
Here is an example of how to add an address to a person in the system.
POST http://securelb.trackerproducts.com/api/people/8/addresses
Body of request
{
"id": 0, address id will be populated on successful save
"date": "2021-05-21T20:26:09.298Z",
"entityId": 8, Id of the person
"line1": "123 First Street",
"line2": "",
"city": "Cinicnnati",
"zip": "45212",
"stateId": 35, Ids can be retrieved from Get api/states
"addressTypeId": 2, Ids can be retrieved from Get api/addressTypes
"countryId": 231 Ids can be retrieved from Get api/countries
}