Timestamp at which credentialing was approved/denied.
CertifyOS API
/- Deny Provider Credentialing Workflow
Approve Provider Credentialing Workflow
Table Provider Credentialing Workflow
Cancel Provider Credentialing Workflow
Deny Provider Credentiali...
CertifyOS API
Request
Move a provider credentialing workflow to approved status.
Approval Criteria
- The workflow must exist and be accessible to the current organization and user.
- The workflow can only be approved by Medical Director or Provisional Approver.
- The workflow must be in state (PSV ready, Tabled, Hold for Cred Comm) that allows the requested transition.
- Once the workflow is in the approved state, it cannot be reverted by any user besides Supervisor.
Security
BearerAuth
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cred-approved
- Productionhttps://ng-api-production.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cred-approved
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cred-approved
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cred-approved' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"credStatusDate": "2019-08-24T14:15:22Z",
"medicalDirectorId": "string"
}'Request
Move a provider credentialing workflow to denied status.
Denial Criteria
- The workflow must exist and be accessible to the current organization and user.
- The workflow can only be denied by Medical Director or Provisional Approver.
- The workflow must be in state (PSV ready, Tabled, Hold for Cred Comm) that allows the requested transition.
- Once the workflow is in the denied state, it cannot be reverted by any user besides Supervisor.
Security
BearerAuth
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cred-denied
- Productionhttps://ng-api-production.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cred-denied
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cred-denied
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cred-denied' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"credStatusDate": "2019-08-24T14:15:22Z",
"medicalDirectorId": "string"
}'Request
Move a provider credentialing workflow to tabled status.
Tabled Criteria
- The workflow must exist and be accessible to the current organization and user.
- The workflow can only be tabled by Medical Director or Provisional Approver.
- The workflow must be in state (PSV ready, Hold for Cred Comm) that allows the requested transition.
Security
BearerAuth
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-tabled
- Productionhttps://ng-api-production.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-tabled
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-tabled
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-tabled' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Request
Move a provider credentialing workflow to cancel status.
Cancellation Criteria
- The workflow must exist and be accessible to the current organization and user.
- The workflow can only be approved by Credentialing User, Supervisor, Medical Director or Provisional Approver.
- Once the workflow is in the cancelled state, it cannot be reverted by any user besides Supervisor.
Security
BearerAuth
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cancel
- Productionhttps://ng-api-production.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cancel
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/credentialing-workflows/{id}/steps/move-to-cancel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.certifyos.com/_mock/reference/application/api/v2/credentialing-workflows/{id}/steps/move-to-cancel' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"reason": "string"
}'