Fund Verification Errors

Fund Verification Errors #

POST - 3040 - Health Fund System unavailable #

Fund verification requires a live connection to the Health Fund. From time to time this is unavailable, returning error 3040. You will need to try again later, unless you have callbacks enabled.

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

Headers

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

Body

{
    "type": "Verify:Fund",
    "earliestDateOfService": "{{yesterday}}",
    "patient": {
        "dateOfBirth": "1982-10-24",
        "fund": {
            "eclipseId": "TST",
            "number": "8017123",
            "ref": 1
        },
        "gender": "F",
        "name": {
            "first": "Talia",
            "family": "SIMKINS"
        }
    }
}

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:Fund",
  "earliestDateOfService": "{{yesterday}}",
  "patient": {
    "dateOfBirth": "1982-10-24",    
     "fund": {
      "eclipseId": "TST",
      "number": "8017",
      "ref": 1
    },
    "medicare": {
      "number": "4951306731",
      "ref": 1
    },
    "gender": "F",
    "name": {
      "first": "Talia",
      "family": "SIMKINS"
    },
    "alias" :{
      "first": "Talia",
      "family": "statuscode8017"
    }
  }
}'

Example Response:

Body:

{
  "earliestDateOfService": "2021-06-04",
  "patient": {
    "fund": {
      "number": "8017123",
      "ref": "1",
      "eclipseId": "TST"
    },
    "dateOfBirth": "1982-10-24",
    "name": {
      "family": "SIMKINS",
      "first": "Talia"
    },
    "gender": "F"
  },
  "status": {
    "fund": {
      "message": "Health Fund system unavailable.",
      "code": 3040
    }
  }
}

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

POST - 9663 - No Fund Match #

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

Headers

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

Body

{
  "type": "Verify:Fund",
  "earliestDateOfService": "{{yesterday}}",
  "patient": {
    "dateOfBirth": "1982-10-24",
     "fund": {
      "eclipseId": "TST",
      "number": "2342344",
      "ref": 1
    },
    "gender": "F",
    "name": {
      "first": "Talia",
      "family": "SIMKINS"
    },
    "alias" :{
      "first": "Talia",
      "family": "statuscode9663"
    }
  }
}

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:Fund",
  "earliestDateOfService": "{{yesterday}}",
  "patient": {
    "dateOfBirth": "1982-10-24",
     "fund": {
      "eclipseId": "TST",
      "number": "2342344",
      "ref": 1
    },
    "gender": "F",
    "name": {
      "first": "Talia",
      "family": "SIMKINS"
    },
    "alias" :{
      "first": "Talia",
      "family": "statuscode9663"
    }
  }
}'

Example Response:

Body:

{
  "earliestDateOfService": "2021-06-04",
  "patient": {
    "alias": {
      "family": "statuscode9663",
      "first": "Talia"
    },
    "fund": {
      "number": "2342344",
      "ref": "1",
      "eclipseId": "TST"
    },
    "dateOfBirth": "1982-10-24",
    "name": {
      "family": "SIMKINS",
      "first": "Talia"
    },
    "gender": "F"
  },
  "status": {
    "fund": {
      "message": "Check Fund and Membership Card details.",
      "code": 9663
    }
  }
}

Headers:

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