v1

latestOpenAPI 3.1.02026-08-063776831.4 MB
CredentialingWorkflow

Create credentialing workflows for multiple practitioners (async)

Asynchronously creates credentialing workflows for multiple practitioners. The request is accepted and processing begins immediately in the background. Each workflow is processed independently with automatic practitioner data hydration. Results are logged but not returned in the response.

post/credentialing-workflows/bulk-create

Headers

tenant-idstring required

Tenant ID

Request body

certifyPractitionerIdsstring[]

List of certify practitioner IDs to create workflows for. Required when isSelectAll is false. Ignored when isSelectAll is true (practitioner IDs will be fetched using the filter).

filterstring

Filter criteria as JSON string (URL encoded). Used to find practitioners when isSelectAll is true. Practitioner IDs from matching practitioners will be used to create new workflows. See GET /practitioners endpoint documentation for filter format. Filterable fields include: data.npi, data.firstName, data.lastName.

isSelectAllboolean

If true, find all practitioners matching the filter criteria and create workflows for those practitioners, instead of using certifyPractitionerIds. When true, filter parameter is required and certifyPractitionerIds will be ignored.

Example request

{
  "certifyPractitionerIds": [
    "cp_123456",
    "cp_789012"
  ],
  "filter": "{\"data.npi\":{\"eq\":\"1234567890\"}}"
}

Response

Bulk workflow creation request accepted and processing started. The operation will complete in the background.

object required