Share Content

Learn how to share content across collections.

There are two main options when sharing content across collections. You can create a complete copy or create a shortcut that references the original. Creating a complete copy will create copies of all the files related to the asset to the other collection, whereas, creating a shortcut will create a reference to the original asset in the source collection.

Create a copy

GET https://api.echo3D.com/shareContent?fromKey=<SOURCE_API_KEY>&toKey=<DEST_API_KEY>&secKey=<SEC_KEY>&entry=<ASSET_ID>&email=<EMAIL>&keepAssetId=<true|false>&overwrite=<true|false>

Allows you to create a complete copy of an asset from the source collection (fromKey) to the destination collection (toKey).

Query Parameters

Name
Type
Description

fromKey*

string

Api Key of the source collection

toKey*

string

Api Key of the destination collection

secKey

string

entry*

string

The asset id of the asset being copied

email*

string

User's email address

keepAssetId

boolean

Set true to retain the same asset id after it is copied to the new

overwrite

boolean

Set true to overwrite the asset in the case where the destination collection already contains an asset with the same asset id

Create a shortcut

GET https://api.echo3D.com/shareContent?fromKey=<SOURCE_API_KEY>&toKey=<DEST_API_KEY>&secKey=<SEC_KEY>&entry=<ASSET_ID>&email=<EMAIL>&createShortcut=true

Allows you to create a reference of an asset from the source collection (fromKey) to the destination collection (toKey).

Query Parameters

Name
Type
Description

fromKey*

string

Api Key of the source collection

toKey*

string

Api Key of the destination collection

secKey

string

entry*

string

The asset id of the asset being copied

email*

string

User's email address

createShortcut

boolean

Set true to create a shortcut

Last updated