Create Nextcloud Talk video call

POST https://dddug.zulipchat.com/api/v1/calls/nextcloud_talk/create

Create a video call URL for a Nextcloud Talk video call. Requires Nextcloud Talk to be configured on the Zulip server.

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

Usage examples

curl -sSX POST https://dddug.zulipchat.com/api/v1/calls/nextcloud_talk/create \
    -u BOT_EMAIL_ADDRESS:BOT_API_KEY \
    --data-urlencode 'room_name=#Test > team check-in'

Parameters

room_name string required

Example: "#Test > team check-in"

Room name for the Nextcloud Talk conversation.


Response

Return values

  • url: string

    The URL for the Nextcloud Talk conversation.

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://nextcloud.example.com/index.php/call/abc123xyz"
}