Workflow-run
Task
Document
- GETDocument metadata
- GETFull document details
- GETDocument CSV content
- POSTUnzip file and return PDFs
- POSTGenerate CSV document
- POSTPresigned URL for upload
- POSTClassify document (async)
- POSTSplit document (async)
- POSTCreate documents from splits
- POSTLegacy extract document (async)
- POSTDocument extraction (async)
- POSTRender document body
- POSTGenerate document from template (async)
- POSTTransform JSON to HTML
- POSTDocument reasoning (async)
- POSTSearch across documents
Async-result
Communication
Clearinghouse
Ledger
Integration - Snowflake
Clearinghouse
List payers
Lists all payers available for eligibility checks.
GET
/
api
/
v2
/
clearinghouse
/
payers
Copy
import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
payers = client.v2.clearinghouse.payers.list()
print(payers.payers)
Copy
{
"payers": [
{
"stediId": "<string>",
"displayName": "<string>",
"primaryPayerId": "<string>",
"aliases": [
"<string>"
],
"names": [
"<string>"
]
}
]
}
Response
200
application/json
Successfully retrieved the list of payers.
Copy
import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
payers = client.v2.clearinghouse.payers.list()
print(payers.payers)
Copy
{
"payers": [
{
"stediId": "<string>",
"displayName": "<string>",
"primaryPayerId": "<string>",
"aliases": [
"<string>"
],
"names": [
"<string>"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.