For the complete documentation index, see llms.txt. This page is also available as Markdown.

Unrecognized Emails

Base URL: https://api.welkinhealth.com/{tenantName}/{instanceName}/unrecognized-emails

Unrecognized emails are inbound messages from email addresses not associated with any known patient.


Get All Unrecognized Emails

GET /unrecognized-emails

Returns a paginated list of unrecognized inbound email messages.

Query Parameters

Parameter
Type
Required
Description

startDate

string (ISO 8601)

No

Filter from date

endDate

string (ISO 8601)

No

Filter to date

status

string

No

PENDING or RESOLVED

page

integer

No

Page number (default: 0)

size

integer

No

Page size (default: 20)

Example Request

curl -X GET "https://api.welkinhealth.com/acme/live/unrecognized-emails?status=PENDING" \
  -H "Authorization: Bearer {access_token}"

Example Response


Get Unrecognized Email by ID

GET /unrecognized-emails/{emailId}

Returns a single unrecognized email record including the full body.

Path Parameters

Parameter
Type
Required
Description

emailId

string

Yes

ID of the unrecognized email

Example Request

Example Response


Get Email Attachment

GET /unrecognized-emails/{emailId}/attachment

Returns the email attachment file.

Example Request

Returns binary file data with appropriate Content-Type header.


Resolve Unrecognized Email

PATCH /unrecognized-emails/{emailId}

Links the email to a known patient and marks it as resolved.

Path Parameters

Parameter
Type
Required
Description

emailId

string

Yes

ID of the unrecognized email

Request Body

Field
Type
Required
Description

patientId

string

Yes

ID of the patient to link

status

string

Yes

Must be RESOLVED

Example Request

Example Response

Last updated

Was this helpful?