Create Constructor Groups video call

POST https://chat.zulip.org/api/v1/calls/constructorgroups/create

Create a video call URL for a Constructor Groups video call. Requires Constructor Groups to be configured on the Zulip server.

Changes: New in Zulip 12.0 (feature level 460).

Usage examples

curl -sSX POST https://chat.zulip.org/api/v1/calls/constructorgroups/create \
    -u BOT_EMAIL_ADDRESS:BOT_API_KEY

Parameters

This endpoint does not accept any parameters.

Response

Return values

  • url: string

    The URL for the Constructor Groups video call.

Example response(s)

Changes: As of Zulip 7.0 (feature level 167), if any parameters sent in the request are not supported by this endpoint, a successful JSON response will include an ignored_parameters_unsupported array.

A typical successful JSON response may look like:

{
    "msg": "",
    "result": "success",
    "url": "https://example.constructor.app/groups/room/room-123"
}