Get full detail for a facility outreach
Returns the complete detail record for one facility outreach: the full email thread (each email with its replies and attachments) and a chronological status-transition timeline. Call it after obtaining an outreachId from the outreach list endpoint (GET /facility-credentialing-outreaches/workflow/{workflowId}) or from the outreachId in a successful POST /facility-credentialing-outreaches response. Read-only; it has no side effects. outreachId must identify an outreach record visible to the tenant supplied in the tenant-id header.
Path parameters
Outreach record ID, obtained from the outreach list endpoint or from a POST /facility-credentialing-outreaches response.
Headers
Tenant ID used to scope the lookup to the caller's organization.
Response
The outreach detail record: emails (each with direction, deliveryStatus, replies, and attachments - attachments[].id is usable with the attachment download endpoint), and timeline (chronological entries, each with a type of "outreach" or "email" and a status label).
Example response
{
"outreachType": "FACILITY_CREDENTIALING",
"reasons": [
{
"id": "reason-123",
"label": "Malpractice Insurance Missing"
}
],
"lastAttemptedAt": "2022-03-10T16:15:50Z",
"createdAt": "2022-03-10T16:15:50Z",
"updatedAt": "2022-03-10T16:15:50Z",
"emails": [
{
"direction": "OUTBOUND",
"deliveryStatus": "delivered",
"createdAt": "2022-03-10T16:15:50Z",
"updatedAt": "2022-03-10T16:15:50Z",
"replies": [
{
"direction": "INBOUND",
"createdAt": "2022-03-10T16:15:50Z",
"updatedAt": "2022-03-10T16:15:50Z",
"attachments": [
{
"type": "application/pdf"
}
]
}
],
"attachments": [
{
"type": "application/pdf"
}
]
}
],
"timeline": [
{
"date": "2022-03-10T16:15:50Z",
"type": "outreach",
"status": "Email Delivered"
}
]
}Changes
Changed in 1 of the 2 revisions of this API.128
- ●
added the new
FACILITY_CREDENTIALINGenum value to theoutreachTyperesponse property for the response status200response-property-enum-value-added
- ●
added the new
INBOUNDenum value to theemails/items/directionresponse property for the response status200response-property-enum-value-added
- ●
added the new
INBOUNDenum value to theemails/items/replies/items/directionresponse property for the response status200response-property-enum-value-added
- ●
added the new
OUTBOUNDenum value to theemails/items/directionresponse property for the response status200response-property-enum-value-added
- ●
added the new
OUTBOUNDenum value to theemails/items/replies/items/directionresponse property for the response status200response-property-enum-value-added
- ●
added the new
PRACTITIONER_CREDENTIALINGenum value to theoutreachTyperesponse property for the response status200response-property-enum-value-added
- ●
added the new
PRACTITIONER_MONITORINGenum value to theoutreachTyperesponse property for the response status200response-property-enum-value-added
- ●
added the new
deferredenum value to theemails/items/deliveryStatusresponse property for the response status200response-property-enum-value-added
- ●
added the new
deliveredenum value to theemails/items/deliveryStatusresponse property for the response status200response-property-enum-value-added
- ●
added the new
emailenum value to thetimeline/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
outreachenum value to thetimeline/items/typeresponse property for the response status200response-property-enum-value-added
- ●
added the new
processedenum value to theemails/items/deliveryStatusresponse property for the response status200response-property-enum-value-added
- ○
added the media type
application/jsonfor the response with the status401response-media-type-added
- ○
added the media type
application/jsonfor the response with the status403response-media-type-added
- ○
added the media type
application/jsonfor the response with the status404response-media-type-added
- ○
added the media type
application/jsonfor the response with the status500response-media-type-added
- ○
added the optional property
emails/items/attachments/items/reasonIdto the response with the200statusresponse-optional-property-added
- ○
added the optional property
emails/items/replies/items/attachments/items/reasonIdto the response with the200statusresponse-optional-property-added
- ○
added the optional property
emails/items/replies/items/submitterEmailto the response with the200statusresponse-optional-property-added
- ○
added the optional property
emails/items/submitterEmailto the response with the200statusresponse-optional-property-added
This revision also has 44 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●