Verification Output
curl --request POST \
--url https://api.example.com/verification-output \
--header 'Content-Type: application/json' \
--data '
{
"request": {
"request_id": "<string>",
"input": {
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"payer_info": {
"phone_number": "<string>"
},
"provider_info": {
"npi": "<string>",
"name": "<string>",
"tin": "<string>",
"organization_name": "<string>"
},
"callback_url": "<string>",
"cpt_code_coverage": [
"<string>"
]
},
"received_timestamp": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
},
"insurance_data": [
{
"person_uuid": "<string>",
"verification_time": "2023-11-07T05:31:56Z",
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"plan_info": {
"plan_name": "<string>",
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"cpt_code_coverage": [
"<string>"
]
},
"uuid": "<string>",
"request_id": "<string>",
"notes": "<string>"
}
]
}
'import requests
url = "https://api.example.com/verification-output"
payload = {
"request": {
"request_id": "<string>",
"input": {
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"payer_info": { "phone_number": "<string>" },
"provider_info": {
"npi": "<string>",
"name": "<string>",
"tin": "<string>",
"organization_name": "<string>"
},
"callback_url": "<string>",
"cpt_code_coverage": ["<string>"]
},
"received_timestamp": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
},
"insurance_data": [
{
"person_uuid": "<string>",
"verification_time": "2023-11-07T05:31:56Z",
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"plan_info": {
"plan_name": "<string>",
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"cpt_code_coverage": ["<string>"]
},
"uuid": "<string>",
"request_id": "<string>",
"notes": "<string>"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
request: {
request_id: '<string>',
input: {
patient_info: {
subscriber_id: '<string>',
dob: '<string>',
name: '<string>',
address: '<string>'
},
payer_info: {phone_number: '<string>'},
provider_info: {
npi: '<string>',
name: '<string>',
tin: '<string>',
organization_name: '<string>'
},
callback_url: '<string>',
cpt_code_coverage: ['<string>']
},
received_timestamp: '2023-11-07T05:31:56Z',
error_reason: '<string>'
},
insurance_data: [
{
person_uuid: '<string>',
verification_time: '2023-11-07T05:31:56Z',
patient_info: {
subscriber_id: '<string>',
dob: '<string>',
name: '<string>',
address: '<string>'
},
plan_info: {
plan_name: '<string>',
start_date: '2023-12-25',
end_date: '2023-12-25',
cpt_code_coverage: ['<string>']
},
uuid: '<string>',
request_id: '<string>',
notes: '<string>'
}
]
})
};
fetch('https://api.example.com/verification-output', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}API Reference
Verification Output
POST
/
verification-output
Verification Output
curl --request POST \
--url https://api.example.com/verification-output \
--header 'Content-Type: application/json' \
--data '
{
"request": {
"request_id": "<string>",
"input": {
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"payer_info": {
"phone_number": "<string>"
},
"provider_info": {
"npi": "<string>",
"name": "<string>",
"tin": "<string>",
"organization_name": "<string>"
},
"callback_url": "<string>",
"cpt_code_coverage": [
"<string>"
]
},
"received_timestamp": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
},
"insurance_data": [
{
"person_uuid": "<string>",
"verification_time": "2023-11-07T05:31:56Z",
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"plan_info": {
"plan_name": "<string>",
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"cpt_code_coverage": [
"<string>"
]
},
"uuid": "<string>",
"request_id": "<string>",
"notes": "<string>"
}
]
}
'import requests
url = "https://api.example.com/verification-output"
payload = {
"request": {
"request_id": "<string>",
"input": {
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"payer_info": { "phone_number": "<string>" },
"provider_info": {
"npi": "<string>",
"name": "<string>",
"tin": "<string>",
"organization_name": "<string>"
},
"callback_url": "<string>",
"cpt_code_coverage": ["<string>"]
},
"received_timestamp": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
},
"insurance_data": [
{
"person_uuid": "<string>",
"verification_time": "2023-11-07T05:31:56Z",
"patient_info": {
"subscriber_id": "<string>",
"dob": "<string>",
"name": "<string>",
"address": "<string>"
},
"plan_info": {
"plan_name": "<string>",
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"cpt_code_coverage": ["<string>"]
},
"uuid": "<string>",
"request_id": "<string>",
"notes": "<string>"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
request: {
request_id: '<string>',
input: {
patient_info: {
subscriber_id: '<string>',
dob: '<string>',
name: '<string>',
address: '<string>'
},
payer_info: {phone_number: '<string>'},
provider_info: {
npi: '<string>',
name: '<string>',
tin: '<string>',
organization_name: '<string>'
},
callback_url: '<string>',
cpt_code_coverage: ['<string>']
},
received_timestamp: '2023-11-07T05:31:56Z',
error_reason: '<string>'
},
insurance_data: [
{
person_uuid: '<string>',
verification_time: '2023-11-07T05:31:56Z',
patient_info: {
subscriber_id: '<string>',
dob: '<string>',
name: '<string>',
address: '<string>'
},
plan_info: {
plan_name: '<string>',
start_date: '2023-12-25',
end_date: '2023-12-25',
cpt_code_coverage: ['<string>']
},
uuid: '<string>',
request_id: '<string>',
notes: '<string>'
}
]
})
};
fetch('https://api.example.com/verification-output', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}