# Validate geo-fence authentication Validates the geo-fence authentication data for a user. Endpoint: POST /validate-geo-fence-auth Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `country_code` (string, required) Country code of post /validate-geo-fence-auth request. Example: "+91" - `mobile` (string, required) Mobile of post /validate-geo-fence-auth request. Example: "6283974746" - `status` (integer, required) Status of post /validate-geo-fence-auth request. Example: 1 - `latitude` (string, required) Latitude of post /validate-geo-fence-auth request. Example: "31.633979" - `longitude` (string, required) Longitude of post /validate-geo-fence-auth request. Example: "74.872264" - `address` (string, required) Address of post /validate-geo-fence-auth request. ## Response 200 fields (application/json): - `status` (string, required) Outcome of the request. Always success for 2xx responses. Enum: "success" - `message` (string, required) Short description of the successful operation outcome. Example: "Operation completed successfully" ## Response 400 fields (application/json): - `status` (string, required) Outcome of the request. Always error for 4xx/5xx responses. Enum: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Bad request - missing or invalid data"