Confirming a Veteran’s status is useful when determining if a person is a verified Veteran or not. An example of use for this endpoint is if your system needs to confirm that a customer is a veteran when to apply a coupon for a military discount. This can also be used to simply verify whether a person is a Veteran or not for employment purposes.
Register or Login to display Your API Key
POST
https://veteranverify.app/api/v1/veteran-confirmation/
Required Parameters
| Parameter | Type | Description | 
| apiKey | string | Your API Key | 
| firstName | string | The person’s first name | 
| middleName | string | The person’s middle name | 
| lastName | string | The person’s last name | 
| gender | string | “M” or “F” | 
| city | string | Person’s city | 
| streetAddressLine1 | string | Person’s address | 
| birthDate | mixed | YYYY-MM-DD | 
| zipCode | int | Person’s zipcode | 
| state | string | Person’s state abbreviation. Example “OH” | 
| country | string | Person’s country. Example “USA” | 
Response
The response will be in JSON format.
| Parameter | Description | 
| id | Internal reference id | 
| veteran_status | “confirmed” or “not confirmed” | 
| resource_owner | “VeteranVerify” | 
Error Response
in the event there is an error with the request, the system will return a 400 Response and the parameters “status” as false and provide a description of the error in the “description” parameter.