Skip to main content
POST
/
api
/
v2
/
clearinghouse
/
discovery
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.clearinghouse.run_discovery(
    person={},
)
print(response.result)
{
  "result": "<any>"
}

Headers

Idempotency-Key
string

A unique identifier for the event. If the same event is sent with the same idempotency key, the event will be ignored.

Body

application/json
person
object
required
dateOfService
string

Date of service (YYYY-MM-DD)

accountNumber
string

Account number

serviceCode
string

Service code

checkDemographics
boolean

Whether to check demographics

checkCredit
boolean

Whether to check credit

runBusinessRules
boolean

Whether to run business rules

Response

Discovery process completed successfully.

result
any
I