List Messages (clinician)
Retrieve a paginated list of messages for patients assigned to the clinician. Supports keyword filtering.
Overview
- Method: GET
- Path:
/clinician/messaging/list-messages - Tags: clinician
Parameters
limit (query)
- Type:
integer - Required: No
- Description: limit query parameter
offset (query)
- Type:
integer - Required: No
- Description: offset query parameter
search (query)
- Type:
string - Required: No
- Description: search query parameter
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"messages": [
{}
],
"count": 123
}400
Bad Request
Content Type: application/json
{
"error": "string",
"details": [
{}
]
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
https://api.pillexa.com/clinician/messaging/list-messages \
-H "Content-Type: application/json" \