from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.clearinghouse.payers.retrieve_search(
query="query",
)
print(response.payers)
{
"payers": [
{
"payer": {
"stediId": "<string>",
"displayName": "<string>",
"primaryPayerId": "<string>",
"aliases": [
"<string>"
],
"names": [
"<string>"
]
},
"score": 123
}
]
}
Searches for payers based on the provided search criteria.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.clearinghouse.payers.retrieve_search(
query="query",
)
print(response.payers)
{
"payers": [
{
"payer": {
"stediId": "<string>",
"displayName": "<string>",
"primaryPayerId": "<string>",
"aliases": [
"<string>"
],
"names": [
"<string>"
]
},
"score": 123
}
]
}
The search query (e.g. name, ID, etc.) for the payer.
Successfully retrieved the list of payers.