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

Unrecognized SMS

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

Unrecognized SMS messages are inbound texts from phone numbers not associated with any known patient.


Get All Unrecognized SMS

GET /unrecognized-sms

Returns a paginated list of unrecognized inbound SMS 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-sms?status=PENDING" \
  -H "Authorization: Bearer {access_token}"

Example Response


Get Unrecognized SMS by ID

GET /unrecognized-sms/{smsId}

Returns a single unrecognized SMS record.

Path Parameters

Parameter
Type
Required
Description

smsId

string

Yes

ID of the unrecognized SMS

Example Request

Example Response


Resolve Unrecognized SMS

PATCH /unrecognized-sms/{smsId}

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

Path Parameters

Parameter
Type
Required
Description

smsId

string

Yes

ID of the unrecognized SMS

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?