Share Assets

Share Multiple Assets at a time with internal or external persons.

SecurityOAuth2
Request
header Parameters
content-type
string
Example: application/json
Authorization
string
Example: Bearer <token>
Request Body schema: application/json
type
string

Type of share, either internal or external. If the user has a Tenovos account, internal share is recommended.

Enum: "internal" "external"
shareOriginal
boolean
Default: false

Whether to share the original file, or a rendition of the original at a lower quality.

assets
Array of strings unique

Array of Asset Identifiers for which you would like to share. At least one asset must be shared, and no more than 50 at a time.

emails
Array of strings <email> [ 1 .. 50 ] items unique

Provide the email addresses to share the Assets with. Whether internal or external, provide one or more emails.

Responses
200

Successful Request. Assets shared Successfully.

400

One or more required parameters are missing or invalid.

401

Authentication failed (unauthorized).

403

Forbidden. You do not have permissions to perform this action, or your connection information is not correct.

503

The server is too busy to handle the request.

post/share/assets
Request samples
application/json
{
  • "type": "external",
  • "shareOriginal": true,
  • "assets": [
    ],
  • "emails": [
    ]
}