This section details how to post an external link to Fuse using a HTTP POST
request.
Making knowledge more accessible and discoverable is at the heart of Fuse's philosophy. For recommendations and tips on how to make the knowledge within your content more accessible and easily discoverable, see
Note |
---|
In the case of externally hosted files, such as a Google Doc, Sheet or Slide, it is recommended that you embed it in a Fuse article instead. This is so that users can view the file directly in Fuse, rather than seeing a static link. For more information, see Embedding external content (e.g. Google files) in Fuse articles. |
Resource URL:
https://<instance_name>.fuseuniversal.com/api/v4.4/contents/link
Request
Request Header Parameters
Authorisation is required.
Request Parameters
The following parameters are mandatory when posting a link to Fuse:
name
: The title for the linkdescription
: The description of the linkoriginal_url
: The URL of the external web page you are linking to.community_ids
: The IDs of the communities where this link will be available.
Info |
---|
Please use the request examples as reference. |
Response
The response for this API endpoint contains the New Content new content ID that was created. Security sensitive fields may not be returned in the response.
Note |
---|
The Fuse Content ID is automatically generated by the system on content creation. It cannot be changed. All other content attributes can be changed/updated. |
Info |
---|
Please refer to the Response Codes page for more information. |
Example Request
REQUEST URL EXAMPLE:
Code Block | ||
---|---|---|
| ||
https://<instance_name>.fuseuniversal.com/api/v4.4/contents/link?auth_token=<valid_auth_token> |
REQUEST BODY EXAMPLE:
Code Block | ||
---|---|---|
| ||
{ "name": "Link Added Via API", "description": "Added via api", "composite_attributes": { "original_url": "https://www.fuseuniversal.com/content-methodology" }, "community_ids": [ 12345 ] } |