Directories API
Get a claims administrator
Read an administrator's contact information, submission instructions, and payer metadata.
https://app.mindbill.org/partner/v2/claims-administrators/{id}Display the directory detail panel after selecting an administrator. getClaimsAdministratorDirectory() calls this endpoint and unwraps data.
Use this URL with a server API key or a browser session and its exact allowed Origin. Both credentials use the same request and response contract. See the component API inventory for exact paths and SDK methods.
Path parameters
idRequiredstringDirectory identifier from the claims-administrator search results.
Query parameters
injuryStatestringState used for directory information; default CA.
Examples
curl 'https://app.mindbill.org/partner/v2/claims-administrators/admin_example?injuryState=CA' \
--header "Authorization: Bearer $MINDBILL_API_KEY"curl 'https://app.mindbill.org/partner/v2/claims-administrators/admin_example?injuryState=CA' \
--header "Authorization: Bearer $MINDBILL_BROWSER_TOKEN" \
--header 'Origin: https://your-app.example'Response
200 OK
{
"data": {
"id": "admin_example",
"name": "Example Claims Administrator",
"telephoneNumbers": [],
"emailAddresses": [
"billing@example.com"
],
"webPortals": []
}
}dataobjectDirectory profile. Optional properties are omitted when information is unavailable.
data.id / namestringDirectory identifier and canonical name.
data.type / description / website / hoursstringOptional administrator profile information.
data.aliases / affiliatedEntitiesstring[]Optional alternate names and related entities.
data.telephoneNumbers / emailAddresses / webPortalsstring[]Contact lists; may be empty.
data.claimNumberHint / billProcessingWorkflow / billProcessingWorkflowNotesstringOptional claim-number and submission instructions.
data.payers[]object[]Optional payer metadata: name, route, aliases, hint, affiliatedEntities, optionType, deliveryType, clearinghouse, payerId, clearinghousePayerIds, and preferredClearinghouse.
data.authorizationNoticestringOptional authorization notice.
data.billReview[] / authorization[]object[]Optional contacts with name, phone, fax, email, address, portalUrl, and note.
data.mailingAddresses[]object[]Mailing destinations with address and optional company, notes, billTreatmentTypes, and submissionTypes.
data.claimNumberPatterns[]object[]Claim-number patterns with pattern and optional length and example.