Share Url

The Share Conversation URL endpoint can be used to generate a unique Share URL for a given conversation. The URL created with this method follows the very same rules applied to the Action counterpart or the conversation command.

Request

The following request will generate a new Share URL:

curl --location --request GET 'https://publicapi.xenioo.com/conversation/share/<mode>/<user_id>/<duration>' \
--header 'Authorization: Bearer <BOT_AUTH_TOKEN>' \

The mode parameter can have the following values

The duration parameter represent the validity of the generated url in hours.

Response

If the call is successful, a payload containing the generated url will be returned.

{
    "Url":"<shared_url>"
}

Response Codes

This endpoint will reply with the following standard HTTP codes.

Last updated