Fund verification #
Health Fund details can also be checked through the API
POST
- Verify Fund details
#
{{base_url}}/{{version}}/verify
Headers
Header | Value |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{oauth_token}} |
Body
{
"type": "Verify:Fund",
"patient": {
"dateOfBirth": "1963-12-14",
"gender": "M",
"name": {
"family": "BAILEY",
"first": "FRANCIS"
},
"fund": {
"eclipseId": "STS",
"number": "12345678A",
"ref": "01"
}
},
"provider": {
"servicing": "2418291F"
}
}
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",
"patient": {
"dateOfBirth": "1963-12-14",
"gender": "M",
"name": {
"family": "BAILEY",
"first": "FRANK"
},
"alias": {
"family": "BAYLEY",
"first": "FRANCIS"
},
"fund": {
"eclipseId": "STS",
"number": "12345678A",
"ref": "01"
}
},
"provider": {
"servicing": "2418291F"
}
}'
Example Response:
Body:
{
"provider": {
"servicing": "2418291F"
},
"patient": {
"fund": {
"number": "12345678A",
"ref": "1",
"eclipseId": "STS"
},
"dateOfBirth": "1963-12-14",
"name": {
"family": "BAILEY",
"first": "FRANCIS"
},
"gender": "M"
},
"status": {
"fund": {
"message": "Patient is eligible to claim with Health Fund specified in the request.",
"code": 0
}
}
}
Headers:
Header | Value |
---|---|
Server | nginx/1.19.3 |
Date | Tue, 08 Jun 2021 04:49:28 GMT |
Content-Type | application/json |
Content-Length | 380 |
Connection | keep-alive |
Access-Control-Allow-Origin | * |
Access-Control-Allow-Methods | GET, POST, OPTIONS |
POST
- Verify Fund details - known to Fund with different name
#
If the patient is known to the health fund under a different name than the name they have given you, it is possible to submit their name as an alias along with their legal name in order to successfully verify them. Doing so will return a message of “Patient is eligible to claim with Health Fund specified in the request.”
{{base_url}}/{{version}}/verify
Headers
Header | Value |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{oauth_token}} |
Body
{
"type": "Verify:Fund",
"patient": {
"dateOfBirth": "1963-12-14",
"gender": "M",
"name": {
"family": "BAILEY",
"first": "FRANK"
},
"alias": {
"family": "BAYLEY",
"first": "FRANCIS"
},
"fund": {
"eclipseId": "STS",
"number": "12345678A",
"ref": "01"
}
}
}
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",
"patient": {
"dateOfBirth": "1963-12-14",
"gender": "M",
"name": {
"family": "BAILEY",
"first": "FRANK"
},
"alias": {
"family": "BAYLEY",
"first": "FRANCIS"
},
"fund": {
"eclipseId": "STS",
"number": "12345678A",
"ref": "01"
}
}
}'
Example Response:
Body:
{
"patient": {
"alias": {
"family": "BAYLEY",
"first": "FRANCIS"
},
"fund": {
"number": "12345678A",
"ref": "1",
"eclipseId": "STS"
},
"dateOfBirth": "1963-12-14",
"name": {
"family": "BAILEY",
"first": "FRANK"
},
"gender": "M"
},
"status": {
"fund": {
"message": "Patient is eligible to claim with Health Fund specified in the request.",
"code": 0
}
}
}
Headers:
Header | Value |
---|---|
Server | nginx/1.19.3 |
Date | Tue, 08 Jun 2021 04:49:28 GMT |
Content-Type | application/json |
Content-Length | 341 |
Connection | keep-alive |
Access-Control-Allow-Origin | * |
Access-Control-Allow-Methods | GET, POST, OPTIONS |