Validate Geolocation.
POST/business/validate/geolocation
This endpoint takes an address or coordinates, and checks whether it is valid.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
addressstringrequired
The location. Can be an address or coordinates.
Example:
Bavaria Donau 11, Passau
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
validbooleanrequired
Whether the location is valid.
Example:
true
addressstring
The address if the location is valid.
Example:
Bavaria Donau 11, Passau
{
"valid": true,
"address": "Bavaria Donau 11, Passau"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}