latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

FacilityCredentialingWorkflow

Fetch a single facility credentialing workflow

Returns the full, hydrated details of a single facility credentialing workflow by its ID. When to use: Use when you already know the workflow ID. To search or filter across many workflows, use GET /facility-credentialing-workflows. Preconditions: The workflow must belong to the caller's tenant — cross-tenant access is blocked by an ownership guard. Returns: 200 OK with a fully populated GetFacilityCredentialingWorkflowResponse, including hydrated facility data and the current credentialing status.

get/facility-credentialing-workflows/{workflowId}

Path parameters

workflowIdstring required

ID of the facility credentialing workflow

Headers

tenant-idstring required

Tenant ID

Response

Successfully retrieved the facility credentialing workflow

idstring

Unique identifier for the facility credentialing workflow

tenantIdstring

ID of the tenant

certifyFacilityIdstring

Certify facility ID

tenantFacilityIdstring

ID of the tenant facility

createdBystring

ID of the user who created the facility credentialing workflow

updatedBystring

ID of the user who updated the facility credentialing workflow

createdAtstring date-time
updatedAtstring date-time

Example response

{
  "id": "1234",
  "tenantId": "tenant_123456",
  "certifyFacilityId": "cf_123456",
  "tenantFacilityId": "tf_123456",
  "data": {
    "credentialingStatus": "IN_PROGRESS",
    "credentialingDecisionDate": "2024-06-15",
    "nextCredentialingDate": "2025-06-15",
    "psvReadyDate": "2024-05-01T14:20:00Z",
    "psvCompletedDate": "2024-06-01T16:45:00Z",
    "credentialingStatusLastUpdatedDate": "2024-01-15T10:30:00Z"
  },
  "createdBy": "user_123456",
  "updatedBy": "user_123456",
  "createdAt": "2022-03-10T16:15:50Z",
  "updatedAt": "2022-03-10T16:15:50Z"
}