v1
latestOpenAPI 3.1.02026-08-063776831.4 MBCredentialing Outreach Resource
Send a new credentialing outreach email
Sends a credentialing outreach email to one or more email addresses, with optional CC, BCC, reply-to, and attachments. The 'toEmails' field accepts a list of email addresses directly.
post/credentialing-outreaches
Headers
tenant-idstring required
Tenant ID
Request body
Example request
{
"workflowId": "workflow-123",
"workflowIds": [
"workflow-123",
"workflow-456"
],
"initiatingWorkflowId": "workflow-123",
"toEmails": [
"recipient@example.com"
],
"body": "Please complete your credentialing application.",
"ccEmails": [
"cc@example.com"
],
"bccEmails": [
"bcc@example.com"
],
"outreachReasons": [
"Missing documentation",
"Expired license"
],
"subject": "Action Required: Complete Your Credentialing"
}Response
Outreach email sent successfully. Two response shapes are possible: (1) Multi-tenant request (workflowIds.size > 1): body is MultiTenantOutreachResult with fields outreachId (String) and sends (PerWorkflowSendStatus[]). (2) Single-workflow request: body is a bare String containing the outreach record ID.