Sessions
List a session's shares
List everyone a session is shared with read-only — both registered recipients and pending email invitations. Reports and systematic reviews can also have editors or reviewers added in the Elicit web app; those higher-permission collaborators are managed there and are not returned here. Only the session owner can list shares.
Example
curl https://elicit.com/api/v2/sessions/{sessionId}/shares \
-H "Authorization: Bearer elk_live_your_key_here"
get/sessions/{sessionId}/shares
Path parameters
sessionIdstring uuid required
The session ID (UUID) returned by the create endpoints and GET /sessions
Example:5ad08bfb-cbe0-4911-a8c3-309760d33029
The session ID (UUID) returned by the create endpoints and GET /sessions
Response
The session's current read-only shares.
Example response
{
"shares": [
{
"email": "colleague@example.com"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.