DVA Claims #
DVA claims have a similar format to Bulk Bill claims, with the addition of the dva node.
POST
- Submit a DVA claim
#
{{base_url}}/{{version}}/claims?location={{location_id}}
Headers
Header | Value |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{oauth_token}} |
Params
Param | value |
---|---|
location | {{location_id}} |
Body
{
"type": "DVA",
"flags": {
"serviceType": "O"
},
"items": [
{
"chargeAmount": "71.00",
"date": "2019-10-31",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "08:00"
},
{
"chargeAmount": "71.00",
"date": "2019-10-31",
"duplicateServiceOverride": "Y",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "14:45"
}
],
"location": {
"name": "St Elsewhere's Hospital",
"provider": "9988770W",
"type": "H"
},
"patient": {
"dateOfBirth": "1929-01-12",
"dva": {
"number": "NKM05733"
},
"gender": "M",
"name": {
"family": "CHAPMAN",
"first": "WILLIAM",
"second": "S"
}
},
"provider": {
"payee": "2433411Y",
"servicing": "2433411Y"
}
}
Example Request:
curl --location 'https://sandbox.claiming.com.au/v2/claims?location=25' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ' \
--data '{
"type": "DVA",
"flags": {
"serviceType": "O"
},
"items": [
{
"chargeAmount": "71.00",
"date": "2019-10-31",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "08:00"
},
{
"chargeAmount": "71.00",
"date": "2019-10-31",
"duplicateServiceOverride": "Y",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "14:45"
}
],
"location": {
"name": "St Elsewhere'\''s Hospital",
"provider": "9988770W",
"type": "H"
},
"patient": {
"dateOfBirth": "1929-01-12",
"dva": {
"number": "NKM05733"
},
"gender": "M",
"name": {
"family": "CHAPMAN",
"first": "WILLIAM",
"second": "S"
}
},
"provider": {
"payee": "2433411Y",
"servicing": "2433411Y"
}
}'
Example Response:
Body:
{
"claimId": 170406,
"medicareClaimId": "D0001@",
"message": "Claim queued for sending",
"status": "OK",
"transactionId": "SAP00000Iodj1jVMiF0cku5i"
}
Headers:
Header | Value |
---|---|
Server | nginx/1.19.3 |
Date | Tue, 08 Jun 2021 04:49:28 GMT |
Content-Type | application/json |
Content-Length | 149 |
Connection | keep-alive |
Access-Control-Allow-Origin | * |
Access-Control-Allow-Methods | GET, POST, OPTIONS |
POST
- Submit a DVA claim 2 inpatient consults same day
#
{{base_url}}/{{version}}/claims?location={{location_id}}
Headers
Header | Value |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{oauth_token}} |
Params
Param | value |
---|---|
location | {{location_id}} |
Body
{
"type": "DVA",
"flags": {
"serviceType": "O"
},
"items": [
{
"chargeAmount": "71.05",
"date": "2020-01-06",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "08:00"
},
{
"chargeAmount": "71.05",
"date": "2020-01-06",
"duplicateServiceOverride": "Y",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "14:45"
}
],
"location": {
"name": "St Elsewhere's Hospital",
"provider": "9988770W",
"type": "H"
},
"patient": {
"dateOfBirth": "1929-01-12",
"dva": {
"number": "NKM05733"
},
"gender": "M",
"name": {
"family": "CHAPMAN",
"first": "WILLIAM",
"second": "S"
}
},
"provider": {
"payee": "2433411Y",
"servicing": "2433411Y"
}
}
Example Request:
curl --location 'https://sandbox.claiming.com.au/v2/claims?location=25' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ' \
--data '{
"type": "DVA",
"flags": {
"serviceType": "O"
},
"items": [
{
"chargeAmount": "71.05",
"date": "2020-01-06",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "08:00"
},
{
"chargeAmount": "71.05",
"date": "2020-01-06",
"duplicateServiceOverride": "Y",
"itemNumber": "00024",
"numberOfPatients": 1,
"time": "14:45"
}
],
"location": {
"name": "St Elsewhere'\''s Hospital",
"provider": "9988770W",
"type": "H"
},
"patient": {
"dateOfBirth": "1929-01-12",
"dva": {
"number": "NKM05733"
},
"gender": "M",
"name": {
"family": "CHAPMAN",
"first": "WILLIAM",
"second": "S"
}
},
"provider": {
"payee": "2433411Y",
"servicing": "2433411Y"
}
}'
Example Response:
Body:
{
"claimId": 170407,
"medicareClaimId": "D0002@",
"message": "Claim queued for sending",
"status": "OK",
"transactionId": "SAP00000i5RAgo1xym0Brmhh"
}
Headers:
Header | Value |
---|---|
Server | nginx/1.19.3 |
Date | Tue, 08 Jun 2021 04:49:28 GMT |
Content-Type | application/json |
Content-Length | 149 |
Connection | keep-alive |
Access-Control-Allow-Origin | * |
Access-Control-Allow-Methods | GET, POST, OPTIONS |