Triggers an export workflow for the provider directory. The export will include provider details based on the provided filters. The result is typically a CSV or similar file, and the export is processed asynchronously.
CertifyOS API
/- Upload Supporting Document
Export Provider Directory
Export HSD Report
Get all credentialing workflow timelines for a provider
Upload Supporting Documen...
CertifyOS API
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/providers/export/provider-directory
- Productionhttps://ng-api-production.certifyos.com/providers/export/provider-directory
- Staging (Test Data)https://ng-api-stg.certifyos.com/providers/export/provider-directory
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/providers/export/provider-directory?providerIds=string&includeInactiveProviders=true&limit=0&offset=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
{ "message": "Workflow Executed" }
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/providers/export/hsd-report
- Productionhttps://ng-api-production.certifyos.com/providers/export/hsd-report
- Staging (Test Data)https://ng-api-stg.certifyos.com/providers/export/hsd-report
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/providers/export/hsd-report?providerIds=string&includeInactiveProviders=true&limit=0&offset=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
{ "message": "Workflow Executed" }
Request
Uploads a supporting document for a provider by ID. This endpoint accepts a multipart/form-data request with a file and metadata.
- The uploaded document is associated with the provider and saved in the system.
- Only valid files and supported document metadata will be processed.
- Returns a confirmation once the document is uploaded successfully.
Authorization:
- Requires an Bearer access token.
Possible Errors:
400 Bad Request: If the file or metadata is invalid.404 Not Found: If the provider with the given ID does not exist.
Security
BearerAuth
Supporting Document upload request
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/providers/{id}/supporting-documents
- Productionhttps://ng-api-production.certifyos.com/providers/{id}/supporting-documents
- Staging (Test Data)https://ng-api-stg.certifyos.com/providers/{id}/supporting-documents
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.certifyos.com/_mock/reference/application/api/providers/{id}/supporting-documents' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: multipart/form-data' \
-H 'organization-id: string' \
-F file=string \
-F fileType=string \
-F state=AK- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/providers/{providerId}/credentialing-workflow-timelines
- Productionhttps://ng-api-production.certifyos.com/providers/{providerId}/credentialing-workflow-timelines
- Staging (Test Data)https://ng-api-stg.certifyos.com/providers/{providerId}/credentialing-workflow-timelines
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/providers/{providerId}/credentialing-workflow-timelines' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
[ { "id": "string", "decisionEnteredById": "string", "decisionEnteredByName": "string", "medicalDirectorId": "string", "medicalDirectorName": "string", "receivedForCredentialingDate": "2019-08-24T14:15:22Z", "attestationDate": "2019-08-24T14:15:22Z", "lastCredentialedDate": "2019-08-24T14:15:22Z", "lastCredentialedDateChangeReason": "string", "psvCompleteDate": "2019-08-24T14:15:22Z", "credentialingDecisionDate": "2019-08-24T14:15:22Z", "nextCredentialingDate": "2019-08-24T14:15:22Z", "verificationDate": "2019-08-24T14:15:22Z", "verifierId": "string", "initialCredentialingDate": "2019-08-24T14:15:22Z", "initialCredentialingDateChangeReason": "string", "providerId": "string", "organizationId": "string", "orgEntity": {}, "credentialingWorkflowId": "string", "credentialingStatus": "string", "credentialingCycle": "Initial", "credentialingStatusUpdatedAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z", "createdBy": "string", "createdByName": "string", "updatedAt": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedByName": "string" } ]