- 23 Aug 2023
- 1 Minute to read
- Print
- DarkLight
Configure help links allowlist
- Updated on 23 Aug 2023
- 1 Minute to read
- Print
- DarkLight
To enable users to add help links from worksheets to Zilliant documentation or resources published to other locations, you must add their base URLs to an allowlist.
Only users with Admin and Creator roles can configure and edit the allowlist.
Configure the allowlist
- Run a PATCH request to the
/api/v3/organization/settings
endpoint for your tenant. - Add a raw JSON document body with allowed sites. Use the following syntax:
- allowedExternalLinks—Array of the allowed URLs.
Tip- You must add at least one link.
- Links must start with http:// or https://.
- Links must end with ?, /, or #.
Note: When you add to the allowlist a base URL (domain name), all URLs from the specified domain are allowed. For example, if you add https://docs.zilliant.com/
, users can also enable on worksheets such help links as https://docs.zilliant.com/docs/iq-platform
and https://docs.zilliant.com/docs/workbooks
.
Example JSON body
{
"allowedExternalLinks": [
"https://docs.zilliant.com/",
"http://www.customerdocssite.com?",
"http://www.customerdocssite.com#"
]
}
Edit the allowlist
You can edit, add, or delete URLs in the allowlist. To do this:
- Run a PATCH request as described above.
- Make changes to the allowedExternalLinks values.