The WeCareRemote recordings API provides access to meeting recordings captured during video sessions. Recordings are stored in secure cloud storage and are accessible to authorized users. The API handles the full recording lifecycle — from storage through to expiry and deletion.Documentation Index
Fetch the complete documentation index at: https://docs.wcr.is/llms.txt
Use this file to discover all available pages before exploring further.
How recordings are stored
When a meeting ends, the recording is automatically uploaded to secure cloud storage. Access, metadata, and retention are managed by the platform. After the configured retention period, recordings are automatically removed.Accessing recordings
All recordings endpoints require authentication. Include your Bearer token in theAuthorization header on every request.
Access to recordings is restricted to users with
org_admin permissions. Requests from users without this permission will be rejected with a 403 Forbidden response.Listing recordings
Retrieve a list of all available recordings for your organization. Endpoint:GET /recordings
Authentication: Bearer token required — see Authentication.
Response
An array of recording objects.
Example
Downloading a recording
Use theurl field from the listing response to download a recording. The download URL also requires authentication.
Error responses
| Status code | Cause |
|---|---|
401 Unauthorized | The Bearer token is missing or invalid. |
403 Forbidden | The token is valid but the user does not have org_admin permissions. |
404 Not Found | The requested recording does not exist or has been deleted. |
500 Internal Server Error | An unexpected error occurred in the recordings backend. |