The status has been successfully reverted.
CertifyOS API
//
Create Credentialing Note
CertifyOS API
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/revert-status
- Productionhttps://ng-api-production.certifyos.com/credentialing-workflows/{id}/revert-status
- Staging (Test Data)https://ng-api-stg.certifyos.com/credentialing-workflows/{id}/revert-status
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/revert-status' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"reason": "string"
}'Bodyapplication/jsonrequired
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/notes
- Productionhttps://ng-api-production.certifyos.com/credentialing-workflows/{id}/notes
- Staging (Test Data)https://ng-api-stg.certifyos.com/credentialing-workflows/{id}/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/notes' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"message": "string"
}'- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/notes/{noteId}
- Productionhttps://ng-api-production.certifyos.com/credentialing-workflows/{id}/notes/{noteId}
- Staging (Test Data)https://ng-api-stg.certifyos.com/credentialing-workflows/{id}/notes/{noteId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/notes/{noteId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"message": "string"
}'- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/populate-template-fields
- Productionhttps://ng-api-production.certifyos.com/credentialing-workflows/{id}/populate-template-fields
- Staging (Test Data)https://ng-api-stg.certifyos.com/credentialing-workflows/{id}/populate-template-fields
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/credentialing-workflows/{id}/populate-template-fields?reasons=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
{ "workflowId": "abc123", "providerName": "Dr. Jane Doe", "organizationName": "HealthCare Org", "reasons": [ "Missing License", "Incomplete Application" ], "otherField1": "value1", "otherField2": "value2" }