DVA Verification

DVA Verification #

You can also verify Department of Veterans Affairs details.

POST Verify DVA details #

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

Headers

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

Body

{
    "type": "Verify:DVA",
    "patient": {
        "dateOfBirth": "1929-01-12", 
        "gender": "M", 
        "name": {
            "family": "DARICE", 
            "first": "ROMEO"
        },
        "dva": {
            "number": "TX900359"
        }
    }
}

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": "1929-01-12", 
        "gender": "M", 
        "name": {
            "family": "DARICE", 
            "first": "ROMEO"
        },
        "dva": {
            "number": "TX900359"
        }
    }
}'

Example Response:

Body:

{
  "patient": {
    "dateOfBirth": "1929-01-12",
    "name": {
      "family": "DARICE",
      "first": "ROMEO"
    },
    "gender": "M",
    "dva": {
      "number": "TX900359",
      "entitlementCode": "PTEC",
      "entitlement": "Gold Card"
    }
  },
  "status": {
    "dva": {
      "message": "Patient is known to DVA with details provided.",
      "code": 0
    }
  }
}

Headers:

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

POST - Verify DVA details - Card Number/locations #

If you submit a verification request along with their address and card number, the response will be “Patient is known to DVA with details provided.”

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

Headers

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

Body

{
    "type": "Verify:DVA",
    "patient": {
        "dateOfBirth": "1929-01-12", 
        "gender": "M", 
        "name": {
            "family": "DARICE", 
            "first": "ROMEO"
        },
        "dva": {
            "number": "TX900359"
        },
        "address": {
            "locality": "MACQUARIE SETTLEMENT",
            "postcode": "7301"
        }
    }
}

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": "1929-01-12", 
        "gender": "M", 
        "name": {
            "family": "DARICE", 
            "first": "ROMEO"
        },
        "dva": {
            "number": "TX900359"
        },
        "address": {
            "locality": "MACQUARIE SETTLEMENT",
            "postcode": "7301"
        }
    }
}
'

Example Response:

Body:

{
  "patient": {
    "dateOfBirth": "1929-01-12",
    "name": {
      "family": "DARICE",
      "first": "ROMEO"
    },
    "gender": "M",
    "address": {
      "locality": "MACQUARIE SETTLEMENT",
      "postcode": "7301"
    },
    "dva": {
      "number": "TX900359",
      "entitlementCode": "PTEC",
      "entitlement": "Gold Card"
    }
  },
  "status": {
    "dva": {
      "message": "Patient is known to DVA with details provided.",
      "code": 0
    }
  }
}

Headers:

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

POST Verify DVA details - Without Card Number #

If a patient cannot produce their card number, it is still possible to verify them using their address. If you submit a claim with the address of the patient and without the DVA number, the response will be “Patient is known to DVA with details provided.”

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

Headers

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

Body

{
    "type": "Verify:DVA",
    "patient": {
        "dateOfBirth": "1950-05-07", 
        "gender": "F", 
        "name": {
            "family": "GAYLE", 
            "first": "Angiolina"
        },
        "address": {
            "locality": "HAMILTON",
            "postcode": "3300"
        }
    }
}

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": "1950-05-07", 
        "gender": "F", 
        "name": {
            "family": "GAYLE", 
            "first": "Angiolina"
        },
        "address": {
            "locality": "HAMILTON",
            "postcode": "3300"
        }
    }
}'

Example Response:

Body:

{
  "patient": {
    "dateOfBirth": "1950-05-07",
    "name": {
      "family": "GAYLE",
      "first": "Angiolina"
    },
    "gender": "F",
    "address": {
      "locality": "HAMILTON",
      "postcode": "3300"
    },
    "dva": {
      "number": "VX900687",
      "entitlementCode": "PTEC",
      "entitlement": "Gold Card"
    }
  },
  "status": {
    "dva": {
      "message": "Patient is known to DVA with details provided.",
      "code": 0
    }
  }
}

Headers:

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