DVA Verification Errors

DVA Verification Errors #

POST - 9650 - No match #

{{base_url}}/{{version}}/verify

Headers

HeaderValue
Acceptapplication/json
Content-Typeapplication/json
AuthorizationBearer {{oauth_token}}

Body

{
    "type": "Verify:DVA",
    "patient": {
        "dateOfBirth": "1970-10-10", 
        "gender": "F", 
        "name": {
            "family": "Mathers", 
            "first": "Mary"
        }
    }
}

Example Request:

curl --location 'https://sandbox.claiming.com.au/v2/verify' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ' \
--data '{
    "type": "Verify:DVA",
    "patient": {
        "dateOfBirth": "1970-10-10", 
        "gender": "F", 
        "name": {
            "family": "Mathers", 
            "first": "Mary"
        }
    }
}'

Example Response:

Body:

{
  "patient": {
    "dateOfBirth": "1970-10-10",
    "name": {
      "family": "Mathers",
      "first": "Mary"
    },
    "gender": "F"
  },
  "status": {
    "dva": {
      "message": "The Veteran File Number and/or patient details submitted did not match Veteran checks. Please verify the details and resubmit with additional information if available.",
      "code": 9650
    }
  }
}

Headers:

HeaderValue
Servernginx/1.19.3T
DateTue, 08 Jun 2021 04:49:28 GMT
Content-Typeapplication/json
Content-Length323
Connectionkeep-alive
Access-Control-Allow-Origin*
Access-Control-Allow-MethodsGET, POST, OPTIONS