GET
/transactional-api/research/study-participants/:studyIdList Research Study Participants
Returns the patients currently enrolled in a research study. Participants who have withdrawn or completed the study are not returned, so a withdrawn participant stops appearing as soon as they are withdrawn.
Authorization: Bearer token (JWT). See Authentication.
Request
curl -L -X GET 'https://{tenantId}.api.england.medicus.health/transactional-api/research/study-participants/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'
Path and query parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
studyId | path | string<uuid> | Yes | The id of the research study, as returned by List Research Studies. |
Responses
200 Enrolled participants.
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"patientId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"participantIdentifier": "ABC-0061",
"randomisationNumber": "R-0042",
"enrolledDateTime": "2026-06-01T09:00:00+00:00"
}
]
404 Research study not found.
{
"errors": [
{
"code": "research-study-not-found",
"description": "Research study not found for id: 3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}