Verify All Details

Verify all details #

Sending a verify request without specifying the type of request will return verification information for any available type. You can mix Medicare, Fund, DVA in a sigle request, for a single patient.

POST - Verify All Details #

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

Headers

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

Body

{
    "patient": {
        "dateOfBirth": "1963-12-14",
        "gender": "M",
        "name": {
            "family": "BAILEY",
            "first": "FRANK"
        },
        "alias": {
            "family": "BAYLEY",
            "first": "FRANCIS"
        },
        "medicare": {
            "number": "2950552261",
            "ref": 1
        },
        "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 '{
    "patient": {
        "dateOfBirth": "1963-12-14",
        "gender": "M",
        "name": {
            "family": "BAILEY",
            "first": "FRANK"
        },
        "alias": {
            "family": "BAYLEY",
            "first": "FRANCIS"
        },
        "medicare": {
            "number": "2950552261",
            "ref": 1
        },
        "fund": {
            "eclipseId": "STS",
            "number": "12345678A",
            "ref": "01"
        }
    }
}'