Concession Verification Errors

Concession Verification Errors #

POST 3004 - Concession Verification systetm offline #

From time to time Medicare’s Concession Verification system is unavailable, this will rerun the error message “Concession verification is not currently available, please try again later.”

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

Headers

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

Body

{
  "type": "Verify:Concession",
  "patient": {
    "dateOfBirth": "1958-02-10",
    "medicare": {
      "number": "2293653284",
      "ref": 1
    },
    "gender": "M",
    "name": {
      "first": "Bobby",
      "family": "Leonard"
    }
  }
}

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:Concession",
  "patient": {
    "dateOfBirth": "1958-02-10",
    "medicare": {
      "number": "2293653284",
      "ref": 1
    },
    "gender": "M",
    "name": {
      "first": "Bobby",
      "family": "Leonard"
    }
  }
}'

Example Response:

Body:

{
  "patient": {
    "dateOfBirth": "1958-02-10",
    "name": {
      "family": "Leonard",
      "first": "Bobby"
    },
    "medicare": {
      "number": "2293653284",
      "ref": "1"
    }
  },
  "status": {
    "concession": {
      "code": "3004",
      "message": "Concession verification is not currently available, please try again later."
    },
    "medicare": {
      "message": "Patient is eligible to claim for Medicare with details provided.",
      "code": 0
    }
  }
}

Headers:

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