v1

latestOpenAPI 3.1.02026-08-063776831.4 MB
FacilityCredentialingWorkflow

Create assignment for facility credentialing workflow

Creates a new assignment for the specified facility credentialing workflow

post/facility-credentialing-workflows/{id}/assignments

Path parameters

idstring required

ID of the facility credentialing workflow

Headers

tenant-idstring required

Tenant ID

Request body

assignedTostring

User ID being assigned to

reasonstring

Optional reason for the assignment

Example request

{
  "assignedTo": "user_123456",
  "reason": "Load balancing"
}

Response

Successfully created the assignment

workflowIdstring

Unique identifier for the facility credentialing workflow

tenantIdstring

ID of the tenant

tenantFacilityIdstring

ID of the tenant facility

Example response

{
  "workflowId": "1234",
  "tenantId": "tenant_123456",
  "tenantFacilityId": "tf_123456",
  "assignments": [
    {
      "assignedFrom": "user_123456",
      "assignedTo": "user_789012",
      "assignedBy": "user_345678",
      "assignedOn": "2021-01-01T00:00:00Z",
      "reason": "Load balancing"
    }
  ]
}