Find all Contacts within a given proximity of a geocoordinate
POST {{baseUrl}}/api/Contact/Proximity?skip=<integer>&take=<integer>
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
skip | string | The number of records to skip. Default = 0. | |
take | string | The number of records to take. Default = 10. |
Request Body
{"latitude"=>"<double>", "longitude"=>"<double>", "distanceInMiles"=>"<integer>"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
[{"id":"\u003cinteger\u003e","name":"\u003cstring\u003e","address":"\u003cstring\u003e","lifeToDateGiving":"\u003cstring\u003e","contactViewUrl":"\u003cstring\u003e","latitude":"\u003cdouble\u003e","longitude":"\u003cdouble\u003e"},{"id":"\u003cinteger\u003e","name":"\u003cstring\u003e","address":"\u003cstring\u003e","lifeToDateGiving":"\u003cstring\u003e","contactViewUrl":"\u003cstring\u003e","latitude":"\u003cdouble\u003e","longitude":"\u003cdouble\u003e"}]