Document Name Mapping
Overview
Document name mapping enables the ability to map client’s document names to the ones used by Axuall. This allows easier integration of the documents used by our clients to those utilized in Axuall. Clients can work with the Implementation team to set up their document names. Document name mapping can be accessed by the Verified Share or Files endpoints.
Files Endpoint
The Files endpoint can retrieve all the available files for a clinician by subscriber group. This allows partners to import all files into the provider data management system.
The Files endpoint will return the following pieces of information:
File_type
: artifact, signature, document, attestation, supplemental- Artifact: an expiring link to download evidence for a credential. This is only available for verified data.
- Signature: Uploaded files that require signature by the clinician for credentialing and privileging.
- Document: Uploaded files that were imported by the clinician for credentialing and privileging.
- Attestation: A file associated with a provider’s attestations.
- Supplemental: A collection of supplemental questions gathered from the clinician.
URL
: An expiring link for the document download.Name
: The document name as recorded by Axuall for storage and retrieval.Created_at
: The creation date and time of the document in Axuall.Expires_at
: The expiration date and time of the URL. Links expire after 30 minutes of retrieving the clinician’s files for download.External_file_name
: The stored custom name of the file as defined by the subscriber group.Continuity_ID
: An ID that stays constant for the same credential even as its data changes.
The structure of the JSON is below:
[
{
"url": "string",
"created_at": "2023-07-28T17:12:11.028Z",
"expires_at": "2023-07-28T17:12:11.028Z",
"name": "string",
"external_file_name": "string",
"continuity_id": "string"
}
]
Along with all of the files found in the verified share endpoint, this new one also includes the NPDB artifacts per facility along with the FSMB artifact.
Note: Files are not available until the clinician has shared their wallet with the subscriber.
What is a Clinician Wallet?
The Clinician Wallet is the clinician-facing part of Axuall's product that is used to gather information about the clinician and to surface what we have collected for the clinician to review. It is also the application where clinicians can log in to refer to their credentials or to share those credentials with an organization.
External file name in Verified Share
The Verified Share endpoint will now include all of the custom document names (external_file_name
) for a clinician. This enables clients who want to parse out the files from this endpoint to do so into the provider data management system and have them match the document names they are using. External file name will come over in 3 different formats in the endpoint:
External_file_name
External.{credential_type}.file_name
Verified.{credential_type}.external_file_name
External file names will show up as listed below:
Category | Axuall Name/URL | External File Name |
---|---|---|
ID Verification | Verified.axuall_id.artifact | External_file_name |
State License | Verified.state_license.artifact | External.state_license.file_name |
DEA | Verified.dea.artifact | Verified.dea.external_file_name |
CDS | Verified.cds.artifact | Verified.cds.external_file_name |
RN License | Verified.rn_license.artifact | Verified.rn_license.external_file_name |
Medicare | Verified.medicare.artifact | External.medicare.file_name |
NPI | Verified.npi.artifact | Verified.npi.external_file_name |
Education - University Transcript | Verified.university_transcript.artifact | External_file_name |
Education - NSC | Verified.nsc.artifact | External_file_name |
Training | Verified.training.artifact | External.training.file_name |
Board Certification | Verified.board_certification.artifact | External.board_certification.file_name |
Hospital Affiliations | Verified.hospital_affiliations.artifact | External.affiliations.file_name |
Work History | Verified.work_number.artifact | External_file_name |
Documents | Documents | External_file_name |
Signatures | Signatures | External_file_name |
Ongoing Monitoring - HHS_OIG | Verified.hhs_oig.artifact | Verified.hhs_oig.external_file_name |
Ongoing Monitoring - Medicaid | Verified.medicaid.artifact | Verified.medicaid.external_file_name |
Ongoing Monitoring - Medicare | Verified.medicare_participation.artifact | Verified.medicare_participation.external_file_name |
Ongoing Monitoring - SAM Participation | Verified.sam_participation.artifact | Verified.sam_participation.external_file_name |
Ongoing Monitoring - OFAC | Verified.ofac.artifact | Verified.ofac.external_file_name |
Life Support | Verified.life_support.artifact | Verified.life_support.external_file_name |
Dynamic Attributes
Document name mapping for state licenses (medical and RN), training, board certifications, and life support certifications will support the ability to append attributes from the credential type.
- State licenses - The state of the license can be added to the external file name.
- Training - The training type can be added to the external file name.
- Board certifications - The specialty type for the board certification can be added to the external file name.
- Life support certifications - The training type for the life support certification can be added to the external file name.
- NPDB - The facility for NPDB can be added to the external file name.
- Note: This is only available in the Files endpoint.
- Ongoing Monitoring - Medicaid - The state of the Medicaid ongoing monitoring report can be added to the external file name.
Updated 2 months ago