Get a shareable meeting link
POST/meeting.shareLink
Returns a shareable URL for a meeting that you can distribute to others. Pass the id of a meeting obtained from /meeting.list or /meeting.info.
This endpoint is get-or-create: it returns the meeting's existing share link, or mints one the first time it is called for that meeting. Repeat calls for the same meeting return the same URL.
Creating a share link is a deliberate action, which is why it has its own endpoint rather than being returned as a field on meeting.list / meeting.info โ fetching a meeting never mints a shareable link as a side effect. You can only create a share link for a meeting you can access; the same access check as meeting.info applies.
Access: Organization and Personal. Personal access tokens restrict to meetings the authenticated user participated in.
Required scope: meetings:read
OpenAPI Spec: chat-v1.json
Requestโ
Responsesโ
- 200
- 400
- 401
- 404
- 405
- 500
The meeting's shareable link.
Bad request. Missing id.
Presented invalid authentication credentials.
Meeting not found or not accessible.
An unsupported method was requested.
An internal error occurred.