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

Unrecognized Calls

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

Unrecognized calls are inbound phone calls from numbers not associated with any known patient.


Get All Unrecognized Calls

GET /unrecognized-calls

Returns a paginated list of unrecognized inbound calls.

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-calls?status=PENDING" \
  -H "Authorization: Bearer {access_token}"

Example Response


Get Unrecognized Call by ID

GET /unrecognized-calls/{callId}

Returns a single unrecognized call record.

Path Parameters

Parameter
Type
Required
Description

callId

string

Yes

ID of the unrecognized call

Example Request

Example Response


Resolve Unrecognized Call

PATCH /unrecognized-calls/{callId}

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

Path Parameters

Parameter
Type
Required
Description

callId

string

Yes

ID of the unrecognized call

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?