Invoke the Action API to retrieve information about invoked Actions.
- API v1.5 Documentation
- Payload Reference
- Get Proof Status
API Endpoint Reference (1.5)
Tenovos has introduced version 1.5 to provide non-breaking improvements over previous versions.
Key Changes:
- Authentication Standards now include OAuth2 code flow.
- Client ID is no longer required to be passed when requesting an Authorization token using our Standard Auth from v1.4
- New endpoints have been added and will continue to be added until v2 is generally available to all customers.
- Adaptive Template endpoints
- A new Get Asset endpoint with a simplified Response
- A new Create Asset endpoint with simplified payloads for the Request and Response
- A new Update Asset endpoint with simplified payloads for the Request and Response
- We've made some performance improvements to most endpoints
Tenovos Content Delivery Network (CDN) - Coming Soon!
Tenovos CDN: Pull Zone Overview
Tenovos CDN provides global content acceleration and optimization through a pull zone architecture, ensuring that your assets are delivered to end users with maximum speed, reliability, and efficiency. A Content Delivery Network (CDN) works by caching static content—such as images, videos, and other media—on servers distributed across the globe. When an asset is requested, the CDN serves it from the nearest edge location, reducing load times and offloading traffic from the origin server, which in this case is Tenovos DAM.
A pull zone is the core mechanism that powers this system. It automatically fetches content from the origin the first time it is requested, then caches it at the edge. Subsequent requests are served directly from the CDN cache, improving response times and reducing bandwidth consumption.
Through the Tenovos CDN API, you can create, update, and manage pull zones programmatically. Pull zones support advanced features such as global edge caching, cache purging, bandwidth controls, and real-time performance statistics like cache hit rate and geographic request distribution. Optional optimization settings allow you to enhance performance further by enabling image compression, WebP and AVIF support, and content minification.
With just a few API calls, you can fully integrate high-performance content delivery into your Tenovos workflows—no complex infrastructure required.
Invoke the Collection API to create, retrieve, edit, and delete Collections. Collections are used to group and catalog related Assets for quick access and consumption. Collections can be configured as:
- private: Visible only to the user who created the Collection.
- secured: Visible to users with.
When retrieving the Assets within a Collection, the requesting user will only see the Assets that the user has access to view. For example, a librarian may see all Assets within a Collection, but a general consumer user may only see a portion of those Assets, due to limited security access.
Invoke the Metadata API to retrieve Metadata Template to be applied to Assets during Asset creation. A Metadata Template defines a set of Metadata Attributes of varying types, including Text, Date, Controlled Vocabulary, Tabular, and Cascading Attributes. When a Metadata Template is assigned to a new Asset, the corresponding Metadata Attributes will be available for population on the Asset.
Tenovos Webhook Subscriptions
For more information about our Webhooks, see the Webhook section of our Developer Portal
- https://api.uat.tenovos.io/v1/workflow-templates
- https://api.tenovos.io/v1/workflow-templates
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.uat.tenovos.io/v1/workflow-templates \
-H 'Authorization: string' \
-H 'X-API-Key: YOUR_API_KEY_HERE'[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "Marketing" } ]
- https://api.uat.tenovos.io/v1/proof/{id}/status
- https://api.tenovos.io/v1/proof/{id}/status
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.uat.tenovos.io/v1/proof/{id}/status' \
-H 'Authorization: string' \
-H 'X-API-Key: YOUR_API_KEY_HERE'{ "status": "completed", "decisionStatus": "approved" }
Request
Creates a Proofing User account. Must be a Story Orchestration customer and have available user licenses.
The Request Body must be a JSON object
List of string for each account type assigned to the user
Indicates whether or not the user has confirmed their account via the email notification sent. Only available when the role is not guest. If set to true, user will not receive an email notification and will be able to login without confirming email address.
The password the user will use to login. For Tenovos federated users, this can be any password that is at least 8 characters with 1 number and 1 captial letter, and user will not use this password when accessing proofs via Tenovos federation.
- https://api.uat.tenovos.io/v1/proofing/user
- https://api.tenovos.io/v1/proofing/user
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.uat.tenovos.io/v1/proofing/user \
-H 'Authorization: string' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"first_name": "Tony",
"last_name": "Stark",
"email": "tony.stark@tenovos.com",
"roles": [
"manager"
],
"phone": "4412345678911",
"timezone": "account_owner_timezone",
"company": "Tenovos",
"verified": false,
"password": "string",
"proofing_defaults": {
"view": true,
"comment": true,
"decision": false,
"share": true,
"manage": false,
"notification": "disabled"
}
}'Successful Operation
Identifier of the proofing user account created
Indicated if the user is the owner of the Proofing account for the organization
List of string for each account type assigned to the user
{ "id": "a4fdc859-6d9e-4885-8df0-a5d315827703", "first_name": "Tony", "last_name": "Stark", "account_owner": false, "timezone": "Europe/London", "email": "tony.stark@tenovos.com", "roles": [ "manager" ], "phone": "4412345678911", "company": "Tenovos", "verified": "false" }
- https://api.uat.tenovos.io/v1/proof/{id}/reviewer-url
- https://api.tenovos.io/v1/proof/{id}/reviewer-url
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.uat.tenovos.io/v1/proof/{id}/reviewer-url' \
-H 'Authorization: string' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'X-API-Verification-Key: string' \
-d '{
"email": "john@company.com"
}'{ "url": "https://myco.com/proof/mumcj6m7l07s07sh7smo70sn93" }