Skip to main content
POST
Share a session
Make a session publicly accessible via a share URL. Anyone with the link can view the session without authentication.

Make public

POST /api/v2/sessions/{id}/share Returns 200 with a ShareLink object.

Path parameters

string
required
The session ID.

Response

Response
share_url is a path relative to the API host you called, so prepend your regional base URL (for example https://agp.eu.hcompany.ai) before handing it out.

Example


Revoke public access

DELETE /api/v2/sessions/{id}/share Revokes the public share link. The session is no longer accessible without authentication. Returns 204 No Content.

Example