Retrieve a list of address suggestions based on the provided search term.
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/suggestions/address?search=string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "count": 0 }
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/suggestions/address/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "line_1": "string", "line_2": "string", "line_3": "string", "county": "string", "town": "string", "postcode": "string", "country": "string" }