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