DVA Verification Errors #
POST
- 9650 - No match
#
{{base_url}}/{{version}}/verify
Headers
Header | Value |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{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:
Header | Value |
---|---|
Server | nginx/1.19.3T |
Date | Tue, 08 Jun 2021 04:49:28 GMT |
Content-Type | application/json |
Content-Length | 323 |
Connection | keep-alive |
Access-Control-Allow-Origin | * |
Access-Control-Allow-Methods | GET, POST, OPTIONS |