Download OpenAPI specification:Download
The Flix API is available separately under Foundry's proprietary license.
If you are looking for API documentation for Flix versions prior to 6.5, please go to the legacy documentation site.
This document describes how to interact with the Flix RESTful API. It should give you a good basis to work from to be able to execute common tasks required to automate some Flix server-side features.
Flix is a story development hub for animated film and TV, gaming, and other visual narrative mediums. Watch the video below for a brief overview of how Flix works.
We recommend to take a look at our flix-scripts
repository on GitHub.
This repository contains a handful of useful scripts written in Python.
These scripts are free to be modified and adjusted to your own needs, and should be a very useful baseline to start from.
The /info
endpoint serves as a good starting point to get acquainted with the Flix API.
This endpoint behaves differently depending on if you are authorized or not.
You can make a request to this endpoint with no Authorization
header, and it will return a JSON response announcing the server name.
However, if you make a request to the same endpoint with an authenticated signature, you will receive a JSON response containing more information about the Flix server.
name | string Default: "flix" The server name configured for this server. |
{- "name": "flix"
}
Once you have both unauthenticated and authenticated requests working, you are all set to use the other endpoints available.
A user can be authenticated with Flix via three mechanisms:
The /methods
endpoint can be used to identify whether OAuth tokens can be used for authentication.
Once a user has been successfully authenticated using one of these methods, Flix will return an access key, which the client must use to authorize any future requests:
id | string A public, unique identifier of this access key. |
secret_access_key | string Used to sign requests to authenticate the user. Should be kept secret. |
created_date | string <date-time> The date the access key was created. |
expiry_date | string <date-time> The date the access key will become invalid. |
object (User) The user that the access key is associated with. |
{- "id": "rbcnnb5MrWHW19Y76tjy",
- "secret_access_key": "35Pt4rkxefpuISF8eetmBJpnSyM7zEAz4x0FE0j3",
- "created_date": "2019-08-24T14:15:22Z",
- "expiry_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This endpoint will authenticate your username and password credentials, and provide an authentication key for you to use in subsequent API requests. This endpoint is the sole endpoint to use basic authentication.
Each user may only have one access key. Subsequent requests to this endpoint will invalidate any previously created keys.
import requests.auth API_BASE = "http://localhost:8080" USERNAME = "admin" PASSWORD = "admin" if __name__ == "__main__": response = requests.post(f"{API_BASE}/authenticate", auth=(USERNAME, PASSWORD)) if response.status_code == 201: print("Successfully logged in.") data = response.json() print("Access key ID:", data["id"]) print("Secret access key:", data["secret_access_key"]) else: print("Error when logging in:", response.json()["message"])
{- "id": "rbcnnb5MrWHW19Y76tjy",
- "secret_access_key": "35Pt4rkxefpuISF8eetmBJpnSyM7zEAz4x0FE0j3",
- "created_date": "2019-08-24T14:15:22Z",
- "expiry_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This endpoint will authenticate the user as a Google user, and provide an authentication key for you to use in subsequent API requests. The token expected by this endpoint should be generated by authenticating with Google using OAuth 2.0.
provider required | string What provider to use for OAuth authentication. |
{- "provider": "Google"
}
{- "id": "rbcnnb5MrWHW19Y76tjy",
- "secret_access_key": "35Pt4rkxefpuISF8eetmBJpnSyM7zEAz4x0FE0j3",
- "created_date": "2019-08-24T14:15:22Z",
- "expiry_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
Provides the permitted OAuth and SSO configurations for the server network. This can be used to determine whether a server network permits Google authentication, for example.
This information is available without logging in first.
{- "oauth_enabled": true,
- "oauth_domain": "my_domain.com",
- "oauth_providers": [
- "Google",
- "Okta"
], - "sso_enabled": true
}
Extend the session of a currently authenticated user by extending the expiry time of their access key by 24 hours.
This will return an error if the user has not been authenticated yet; otherwise returns the extended access key.
{- "id": "rbcnnb5MrWHW19Y76tjy",
- "secret_access_key": "35Pt4rkxefpuISF8eetmBJpnSyM7zEAz4x0FE0j3",
- "created_date": "2019-08-24T14:15:22Z",
- "expiry_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
Delete the access key provided in the request URL, effectively signing out the user it is associated with.
This endpoint is only permitted for admins.
keyID required | string[a-zA-Z0-9]+ Example: blwO9ngeNXfkAafy40qi Authentication key. |
{- "error_number": 0,
- "message": "invalid credentials",
- "status_code": 401
}
Flix endpoints can be categorised as follows:
In this section, we describe how to access signed endpoints, along with recommendations on how best to handle the access key from a security point of view.
The access key ID and secret access key should only be stored for the current session, and discarded once the session ends.
Access keys have a finite duration, so we recommend obtaining and cycling them regularly, which can be done using the /authenticate/extend
endpoint.
Do not store or persist access keys to disk or share them with any other user.
We recommend you configure SSL/TLS to encrypt your HTTP API.
To access a signed endpoint, the client must present its access key ID, along with a signature of the request.
The signature is a concatenation of data such as the request body, request path and the current time, hashed using the secret access key.
A new signature must be generated for each request.
If the client presents the server with an incorrect signature, the request will be rejected with a 403
error.
It is very important to understand that these requests are time sensitive and therefore require clocks on client and server machines to be correctly set. They do not have to be in the same timezone, but they must present an accurate time. If the client's clock differs from the server's by more than 15 minutes, the request will be rejected.
See the /info
endpoint for an example of the signing process.
To make it as simple as possible for developers to get started using the Flix API we have provided example scripts for interacting with the API.
There is an example which specifically demonstrates how requests are signed, and all the code you need to make signed requests using Python. If you wish to use a different language, please get in contact via the Flix support portal.
Returns information about the server serving this endpoint. The amount of information returned depends on the privileges of the requesting user.
import base64 import datetime import hmac import requests API_BASE = "http://localhost:8080" # the access key details returned by /authenticate # should never be stored in a file in practice ACCESS_KEY_ID = "jUiy2miRpcpwOMFQJKd1" SECRET_ACCESS_KEY = "hz24ocDYifCdndmaMSnKIjqAX75BofaJ43hMOGAN" # the date format that must be used for the request signature DATE_FORMAT = "%Y-%m-%dT%H:%M:%SZ" def get_time_rfc3999(): utc_now = datetime.datetime.now(datetime.timezone.utc) return utc_now.strftime(DATE_FORMAT) def get_signature( # the secret part of the access key returned on successful authentication secret_access_key, # the HTTP method, e.g. GET, POST, DELETE, PUT or PATCH method, # the request body body, # the value of the Content-Type header for the request, e.g. application/json content_type, # the current UTC time in RFC 3339 format, e.g. 2009-11-10T23:00:00Z utc_time, # the path to request, not including server name or query parameters path, ): content = method + "\n" if len(body) > 0: content += body + "\n" content += content_type + "\n" else: content += "\n\n" content += utc_time + "\n" content += path signature = hmac.digest(secret_access_key.encode(), content.encode(), "sha256") return base64.b64encode(signature).decode() if __name__ == "__main__": method = "GET" path = "/info" utc_time = get_time_rfc3999() signature = get_signature(SECRET_ACCESS_KEY, method, "", "", utc_time, path) headers = { "X-Date": utc_time, "Authorization": "FNAUTH {}:{}".format(ACCESS_KEY_ID, signature), } response = requests.get(f"{API_BASE}{path}", headers=headers) if response.status_code == 200: print("Flix version:", response.json()["version"]) else: print("Error:", response.json()["message"])
{- "name": "flix"
}
Returns the server logs as a data stream.
limitKb | integer Example: limitKb=1000 The max number of kilobytes of data to return. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
serverID required | string[a-zA-Z0-9-]+ Example: cd846267-7e85-457b-b9fe-d2715f0c6757 ID of the server. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "region": "default",
- "ip": "192.168.1.104",
- "port": 8080,
- "running": true,
- "start_date": "2019-08-24T14:15:22Z",
- "hostname": "flix-001.example.com",
- "db_ident": "0dde4ef9-aa06-4517-b678-1829b7e9950a",
- "is_ssl": true,
- "transfer_port": 9091,
- "proxy_host": "proxy.flix.com",
- "proxy_port": 9090,
- "proxy_transfer_port": 9293
}
Fetch all servers currently marked as "running". This response reads from a time limited cache and may require a few minutes after a server becomes online or offline before it is included in the response.
{- "servers": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "region": "default",
- "ip": "192.168.1.104",
- "port": 8080,
- "running": true,
- "start_date": "2019-08-24T14:15:22Z",
- "hostname": "flix-001.example.com",
- "db_ident": "0dde4ef9-aa06-4517-b678-1829b7e9950a",
- "is_ssl": true,
- "transfer_port": 9091,
- "proxy_host": "proxy.flix.com",
- "proxy_port": 9090,
- "proxy_transfer_port": 9293
}
]
}
Some endpoints may take an optional permissions
query parameter to filter groups.
This parameter should be a Base64-encoded JSON object with the following format:
name | string Name is the name of the permission. |
mask | integer The permission mask for this permission. |
{- "name": "flix::/shows",
- "mask": 35
}
created_date | string <date-time> When the user was created. |
deleted | boolean Whether the user has been deleted. |
string The user's email. | |
Array of objects (GroupRolePairList) What groups are assigned to the user. | |
id | integer A globally unique ID for the user. |
is_admin | boolean True if the user is an administrator. |
is_system | boolean True if the user is a system user. Generally only true for the user "system". |
is_third_party | boolean True if the user comes from a third-party user management system, such as OAuth or LDAP. |
password | string The user's password, only set by the client when creating or updating a user's password. It is never set by the server. |
type | string Enum: "flix" "ldap" "oauth" The type of user. |
username | string The username of the user. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Updates a user's data. A regular user can only edit their own data. Administrators can edit all users.
userId required | integer Example: 25 ID of the user. |
created_date | string <date-time> When the user was created. |
deleted | boolean Whether the user has been deleted. |
string The user's email. | |
Array of objects (GroupRolePairList) What groups are assigned to the user. | |
id | integer A globally unique ID for the user. |
is_admin | boolean True if the user is an administrator. |
is_system | boolean True if the user is a system user. Generally only true for the user "system". |
is_third_party | boolean True if the user comes from a third-party user management system, such as OAuth or LDAP. |
password | string The user's password, only set by the client when creating or updating a user's password. It is never set by the server. |
type | string Enum: "flix" "ldap" "oauth" The type of user. |
username | string The username of the user. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
userId required | integer Example: 25 ID of the user. |
{- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
]
}
Fetch an array of all users, excluding system users.
{- "users": [
- {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
id | integer A globally unique ID of the group. |
title required | string The name of the group. |
{- "id": 1,
- "title": "default"
}
{- "id": 1,
- "title": "default"
}
groupId required | integer Example: 1 ID of the group. |
id | integer A globally unique ID of the group. |
title required | string The name of the group. |
{- "id": 1,
- "title": "default"
}
{- "id": 1,
- "title": "default"
}
Permanently delete a user group from the database. This endpoint will error if there is at least one user still assigned to the group. This action is irreversible.
groupId required | integer Example: 1 ID of the group. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
Fetch all groups to which the user belongs. For admin users, this will return all groups stored in Flix.
permissions | string Example: permissions=eyJuYW1lIjogImZsaXg6Oi91c2VycyIsICJtYXNrIjogNH0K A Base64-encoded permission object in the JSON format described in Group filtering. If specified, only items where the logged in user has the specified permission will be returned. |
{- "groups": [
- {
- "id": 1,
- "title": "default"
}
]
}
Fetch all groups with additional structured data. This includes all shows which are assigned to each group and all users with the relevant role pairing.
{- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "roles": [
- {
- "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}, - "user_count": 1,
- "users": [
- {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
]
}
]
}
{- "access_keys": [
- {
- "id": "rbcnnb5MrWHW19Y76tjy",
- "secret_access_key": "35Pt4rkxefpuISF8eetmBJpnSyM7zEAz4x0FE0j3",
- "created_date": "2019-08-24T14:15:22Z",
- "expiry_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
userId required | integer Example: 25 ID of the user. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
userId required | integer Example: 25 ID of the user. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
userId required | integer Example: 25 ID of the user. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
userId required | integer Example: 25 ID of the user. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
Creates a new role which may have one or more permissions associated with it.
id | integer The unique ID of the role. |
name | string The human-readable name of the role. |
Array of objects (PermissionList) A list of permissions associated with this role. |
{- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
{- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
Updates a role, changing its name and replacing all existing permissions.
roleID required | integer Example: 3 ID of the role |
id | integer The unique ID of the role. |
name | string The human-readable name of the role. |
Array of objects (PermissionList) A list of permissions associated with this role. |
{- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
{- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
Returns the permission mask for all assigned permissions for the user within the specified show.
showId required | integer Example: 3 ID of the show. |
{- "permissions": {
- "flix::/comments": 0,
- "flix::/contactSheets": 0,
- "flix::/dialogueRevisions": 0,
- "flix::/editorialImports": 0,
- "flix::/episodes": 0,
- "flix::/exports": 0,
- "flix::/groups": 0,
- "flix::/logs": 0,
- "flix::/mediaObjects": 0,
- "flix::/panelRevisions": 0,
- "flix::/permissions": 0,
- "flix::/roles": 0,
- "flix::/sbpImports": 0,
- "flix::/sequenceRevisions": 0,
- "flix::/sequences": 0,
- "flix::/servers": 0,
- "flix::/shows": 0,
- "flix::/showSettings": 0,
- "flix::/users": 0,
- "property1": 0,
- "property2": 0
}
}
Returns the combined permissions from all roles the user is assigned to.
{- "permissions": {
- "flix::/comments": 0,
- "flix::/contactSheets": 0,
- "flix::/dialogueRevisions": 0,
- "flix::/editorialImports": 0,
- "flix::/episodes": 0,
- "flix::/exports": 0,
- "flix::/groups": 0,
- "flix::/logs": 0,
- "flix::/mediaObjects": 0,
- "flix::/panelRevisions": 0,
- "flix::/permissions": 0,
- "flix::/roles": 0,
- "flix::/sbpImports": 0,
- "flix::/sequenceRevisions": 0,
- "flix::/sequences": 0,
- "flix::/servers": 0,
- "flix::/shows": 0,
- "flix::/showSettings": 0,
- "flix::/users": 0,
- "property1": 0,
- "property2": 0
}
}
Get an array of permission mask masks. These describe which permission bits can be set on which permission objects. This endpoint returns all permissions recognised by the server.
{- "masks": [
- {
- "name": "flix::/mediaObjects",
- "mask": 7,
- "display_value": "Shows",
- "mask_display_values": [
- {
- "mask": 2,
- "display_value": "Upload"
}
]
}
]
}
Flix allows for users to manage their own notification preferences. These notification preferences define whether Flix
is permitted to send a notification Type
, with a classifying Action
to a given user, for a given show association.
Flix only sends notifications to users who have explicit access to shows, via a user group association. This means that while 'admin' users can access all shows, they will not receive notifications unless they are assigned to a show, via a user group, as well as having 'admin' status.
Returns all notification preferences associated with the logged in user.
{- "notification_preferences": [
- {
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "type": "email",
- "action": "publish to editorial",
- "permitted": true
}
]
}
Update multiple notification preferences in one request. Any preferences not included in the PUT request will be unchanged.
Array of objects (NotificationPreference) |
{- "notification_preferences": [
- {
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "type": "email",
- "action": "publish to editorial",
- "permitted": true
}
]
}
{- "notification_preferences": [
- {
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "type": "email",
- "action": "publish to editorial",
- "permitted": true
}
]
}
object (User) The User to which this preference applies. | |
object (Show) The Show to which this preference applies. | |
type | string Value: "email" The method by which a Notification is sent. |
action | string Enum: "publish to editorial" "publish from editorial" The classification notification. |
permitted | boolean Whether the Notification can be sent. |
{- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "type": "email",
- "action": "publish to editorial",
- "permitted": true
}
{- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "type": "email",
- "action": "publish to editorial",
- "permitted": true
}
Fetches all settings, for all shows and at a studio level
{- "studio": [
- {
- "key": "defaultArtworkEditor",
- "value": null,
- "enabled": true
}
], - "show": {
- "shows": [
- {
- "showId": 5,
- "settings": [
- {
- "key": "defaultArtworkEditor",
- "value": null,
- "enabled": true
}
]
}
]
}
}
Patches a show setting. If the setting is not found, it will be added.
showId required | integer Example: 3 ID of the show. |
Key | string |
Value | string |
Enabled | boolean |
[- {
- "Key": "string",
- "Value": "string",
- "Enabled": true
}
]
{- "settings": [
- {
- "key": "defaultArtworkEditor",
- "value": null,
- "enabled": true
}
]
}
Patches a studio setting. If the setting is not found, it will be added.
Key | string |
Value | string |
Enabled | boolean |
[- {
- "Key": "string",
- "Value": "string",
- "Enabled": true
}
]
{- "settings": [
- {
- "key": "defaultArtworkEditor",
- "value": null,
- "enabled": true
}
]
}
The Flix server provides a limited number of events which can be subscribed to by webhooks. Webhooks can be registered
with the Flix server, after which any time an event occurs on the Flix server for which this webhook is subscribed to,
a payload will be POST
ed to the URL provided in the webhook.
When it is first created, the webhook object will be returned from the Flix server with a secret key (36-bit). This is the only time this secret is accessible via the API. Please make a note of the secret key at the time the webhook is registered.
When a payload is sent to a webhook URL, it will include a header which can be used to verify the origin of the message:
X-Flix-signature-256
This is a hex-digest string of the SHA265 hash of the message, using the secret key as the key.
This event will be triggered when a sequence revision is published to editorial.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
A sequence revision has been published to editorial
Array of objects (MediaObject) | |
event_type | string Which webhook event has occurred |
object (Sequence) A collection of sequence revisions. | |
object ($defs-SequenceRevision) Represents a single revision of a sequence. | |
object (Show) Represents a show in Flix. | |
target_app | string Enum: "premiere" "avid" |
object (User) A Flix user. |
{- "created_media_objects": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "event_type": "string",
- "sequence": {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "sequence_revision": {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
], - "property2": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "target_app": "premiere",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event will be triggered when a publish to Flix from editorial occurs.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
A sequence revision has been created via a publish back to Flix
event_type | string Which webhook event has occurred |
object ($defs-SequenceRevision) Represents a single revision of a sequence. | |
object (Sequence) A collection of sequence revisions. | |
object (Show) Represents a show in Flix. | |
source_app | string Enum: "premiere" "avid" |
object (User) A Flix user. |
{- "event_type": "Publish to Flix",
- "new_sequence_revision": {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
], - "property2": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "sequence": {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "source_app": "premiere",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event will be triggered when a sequence revision is exported to Storyboard Pro.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
A sequence revision has been exported to Storyboard Pro
event_type | string Which webhook event has occurred |
object ($defs-SequenceRevision) The sequence revision which was sent to StoryBoard Pro |
{- "event_type": "Sequence revision sent to SBP",
- "sequence_revision": {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
], - "property2": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event will be triggered when an error occurs and is logged to the server logs. This will always be a recovered error.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
An error occurred
message | string |
fields | object |
event_type | string Which webhook event has occurred |
{- "message": "string",
- "fields": { },
- "event_type": "An error occurred"
}
This event will be triggered when a panel revision is created. This event may happen very frequently, and may be triggered in large amounts. It is important that any webhook service subscribing to this event is able to handle the high levels of potential activity.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
A panel revision has been created. This event may occur frequently and in large batches.
event_type | string Which webhook event has occurred |
object (PanelRevision) As a single revision of a panel, containing information about its artwork and relation to other panel revisions. |
{- "event_type": "Panel revision created",
- "panel_revision": {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event can be used to test connectivity between the Flix server and a webhook service listening for other webhooks. It can be triggered via the Flix API.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
Ping was triggered
event_time | string <date-time> The time the event was triggered. |
event_type | string Which webhook event has occurred |
object (User) The user who triggered the event. |
{- "event_time": "2019-08-24T14:15:22Z",
- "event_type": "Ping",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event will be triggered when a panel revision is created.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
Sequence revision created
event_type | string Which webhook event has occurred. |
object ($defs-SequenceRevision) The sequence revision which has just been created. |
{- "event_type": "Sequence revision created",
- "sequence_revision": {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
], - "property2": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
This event will be triggered when a contact sheet is exported.
X-Flix-Event required | string Example: Ping Which webhook event has occurred |
Contact sheet created
event_type | string Which webhook event has occurred |
object (Show) The show holding the sequence revision this contact sheet was created from. | |
object (Sequence) The sequence holding the sequence revision this contact sheet was created from. | |
object ($defs-SequenceRevision) The sequence revision the contact sheet was created from. | |
object (Asset) The asset holding the contact sheet PDF media object. | |
object (User) The user that exported the contact sheet. |
{- "event_type": "Contact sheet created",
- "show": {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "sequence": {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "sequence_revision": {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
], - "property2": [
- {
- "id": null,
- "asset_id": null,
- "name": null,
- "content_type": null,
- "content_length": null,
- "content_hashes": null,
- "created_date": null,
- "status": null,
- "owner": null,
- "asset_type": null,
- "dimensions": null
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
id | integer The unique ID stored in the Flix database. |
name | string The user set short description of the webhook. |
Array of objects (Event) The list of events which will trigger this webhook to be fired. | |
protocol | string Enum: "TCP" "UDP" The protocol which the Flix server should use to send the payload to the URL. |
url | string The address the Flix server should send the payload to, when the webhook is fired. |
object (User) The user that created this webhook. | |
skip_tls | boolean Whether to skip the TLS verification when sending a webhook event payload to a server with HTTPS. This should be set to true if using self-signed certificates. |
retry_count | integer The number of times Flix will attempt to POST a webhook event payload to a URL before it logs an error and stops. |
email_on_failure | boolean If set to true will email all admin users if the webhook fails to deliver the payload to the URL. If RetryCount is greater than 0, the email will only be sent after all retries have been attempted. |
disabled | boolean If set will mean the webhook will not be triggered from any event except pings. |
{- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
{- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false,
- "secret": "9600ee5d-1c66-4d31-b2c3-97ef4a25d053"
}
webhookId required | integer Example: 3 ID of the webhook. |
{- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
Triggers a manual Ping webhook event, the payload for which will be POSTed to the webhook matching the ID provided.
webhookId required | integer Example: 3 ID of the webhook. |
{- "status": "200 OK",
- "webhook": {
- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
}
webhookId required | integer Example: 3 ID of the webhook. |
id | integer The unique ID stored in the Flix database. |
name | string The user set short description of the webhook. |
Array of objects (Event) The list of events which will trigger this webhook to be fired. | |
protocol | string Enum: "TCP" "UDP" The protocol which the Flix server should use to send the payload to the URL. |
url | string The address the Flix server should send the payload to, when the webhook is fired. |
object (User) The user that created this webhook. | |
skip_tls | boolean Whether to skip the TLS verification when sending a webhook event payload to a server with HTTPS. This should be set to true if using self-signed certificates. |
retry_count | integer The number of times Flix will attempt to POST a webhook event payload to a URL before it logs an error and stops. |
email_on_failure | boolean If set to true will email all admin users if the webhook fails to deliver the payload to the URL. If RetryCount is greater than 0, the email will only be sent after all retries have been attempted. |
disabled | boolean If set will mean the webhook will not be triggered from any event except pings. |
{- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
{- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
{- "webhooks": {
- "id": 74,
- "name": "My first webhook",
- "events": [
- {
- "name": "Publish to editorial"
}
], - "protocol": "TCP",
- "user": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "skip_tls": true,
- "retry_count": 3,
- "email_on_failure": false,
- "disabled": false
}
}
id | integer A unique ID for this contact sheet template. |
name | string A human-readable description of this contact sheet template. |
created_date | string <date-time> When this contact sheet template was created. |
modified_date | string <date-time> When this contact sheet template was modified. |
object (User) The user that created this contact sheet template. | |
Array of objects (Show) The shows that this contact sheet template is assigned to. | |
orientation | integer Enum: 0 1 The orientation of each page: landscape (0) or portrait (1). |
object (PageSize) The size of each page in portrait mode. | |
style | integer Enum: 0 1 2 How to lay out the panels on each page: single panel (0), grid (1) or list (2). |
columns | integer The number of panel columns on each page in grid or list mode. |
rows | integer The number of panel rows on each page in grid mode. |
panel_options | Array of strings (PanelOptionList) Items Enum: "panel id" "panel number" "dialogue" "highlight tag" "new marker" "panel duration" "annotations" "date and time" A list of display options for the panels. |
show_header | boolean Whether to show a header on each page. |
show_comments | boolean Whether to show the revision comment in the header. |
show_watermark | boolean Whether to show a watermark on each panel. |
show_company | boolean Whether to show the company logo on each panel. |
show_cover | boolean Whether to include a cover page. |
cover_options | Array of strings (CoverOptionList) Items Enum: "show name" "sequence name" "revision" "revision comment" A list of options for the cover page. |
cover_description | string A string to print on the cover page. |
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
contactSheetId required | integer Example: 4 ID of the contact sheet template. |
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
contactSheetId required | integer Example: 4 ID of the contact sheet template. |
id | integer A unique ID for this contact sheet template. |
name | string A human-readable description of this contact sheet template. |
created_date | string <date-time> When this contact sheet template was created. |
modified_date | string <date-time> When this contact sheet template was modified. |
object (User) The user that created this contact sheet template. | |
Array of objects (Show) The shows that this contact sheet template is assigned to. | |
orientation | integer Enum: 0 1 The orientation of each page: landscape (0) or portrait (1). |
object (PageSize) The size of each page in portrait mode. | |
style | integer Enum: 0 1 2 How to lay out the panels on each page: single panel (0), grid (1) or list (2). |
columns | integer The number of panel columns on each page in grid or list mode. |
rows | integer The number of panel rows on each page in grid mode. |
panel_options | Array of strings (PanelOptionList) Items Enum: "panel id" "panel number" "dialogue" "highlight tag" "new marker" "panel duration" "annotations" "date and time" A list of display options for the panels. |
show_header | boolean Whether to show a header on each page. |
show_comments | boolean Whether to show the revision comment in the header. |
show_watermark | boolean Whether to show a watermark on each panel. |
show_company | boolean Whether to show the company logo on each panel. |
show_cover | boolean Whether to include a cover page. |
cover_options | Array of strings (CoverOptionList) Items Enum: "show name" "sequence name" "revision" "revision comment" A list of options for the cover page. |
cover_description | string A string to print on the cover page. |
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
contactSheetId required | integer Example: 4 ID of the contact sheet template. |
id | integer A unique ID for this contact sheet template. |
name | string A human-readable description of this contact sheet template. |
created_date | string <date-time> When this contact sheet template was created. |
modified_date | string <date-time> When this contact sheet template was modified. |
object (User) The user that created this contact sheet template. | |
Array of objects (Show) The shows that this contact sheet template is assigned to. | |
orientation | integer Enum: 0 1 The orientation of each page: landscape (0) or portrait (1). |
object (PageSize) The size of each page in portrait mode. | |
style | integer Enum: 0 1 2 How to lay out the panels on each page: single panel (0), grid (1) or list (2). |
columns | integer The number of panel columns on each page in grid or list mode. |
rows | integer The number of panel rows on each page in grid mode. |
panel_options | Array of strings (PanelOptionList) Items Enum: "panel id" "panel number" "dialogue" "highlight tag" "new marker" "panel duration" "annotations" "date and time" A list of display options for the panels. |
show_header | boolean Whether to show a header on each page. |
show_comments | boolean Whether to show the revision comment in the header. |
show_watermark | boolean Whether to show a watermark on each panel. |
show_company | boolean Whether to show the company logo on each panel. |
show_cover | boolean Whether to include a cover page. |
cover_options | Array of strings (CoverOptionList) Items Enum: "show name" "sequence name" "revision" "revision comment" A list of options for the cover page. |
cover_description | string A string to print on the cover page. |
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
{- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
{- "contact_sheets": [
- {
- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
]
}
showId required | integer Example: 3 ID of the show. |
{- "contact_sheets": [
- {
- "id": 20,
- "name": "4x4 grid",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "orientation": 0,
- "page_size": {
- "width": 210,
- "height": 279
}, - "style": 1,
- "columns": 4,
- "rows": 4,
- "panel_options": [
- "panel id"
], - "show_header": true,
- "show_comments": false,
- "show_watermark": true,
- "show_company": true,
- "show_cover": true,
- "cover_options": [
- "show name"
], - "cover_description": "Lorem ipsum dolor sit amet"
}
]
}
This endpoint will generate a sample contact sheet using the given template and mock data. The sample sheet will be returned as a PNG image.
data required | string Example: data=eyJuYW1lIjogIlNpbmdsZSBTY3JlZW4gKExhbmRzY2FwZSkiLCAib3JpZW50YXRpb24iOiAwLCAicGFnZV9zaXplIjogeyJ3aWR0aCI6IDIxMCwgImhlaWdodCI6IDI3OX0sICJzdHlsZSI6IDAsICJjb2x1bW5zIjogMywgInJvd3MiOiAyLCAicGFuZWxfb3B0aW9ucyI6IFsicGFuZWwgaWQiLCAicGFuZWwgbnVtYmVyIiwgImRpYWxvZ3VlIiwgImhpZ2hsaWdodCB0YWciLCAibmV3IG1hcmtlciIsICJwYW5lbCBkdXJhdGlvbiIsICJhbm5vdGF0aW9ucyIsICJkYXRlIGFuZCB0aW1lIl0sICJzaG93X2hlYWRlciI6IHRydWUsICJzaG93X2NvbW1lbnRzIjogdHJ1ZSwgInNob3dfd2F0ZXJtYXJrIjogdHJ1ZSwgInNob3dfY29tcGFueSI6IHRydWUsICJzaG93X2NvdmVyIjogdHJ1ZSwgImNvdmVyX29wdGlvbnMiOiBbInNob3cgbmFtZSIsICJzZXF1ZW5jZSBuYW1lIiwgInJldmlzaW9uIiwgInJldmlzaW9uIGNvbW1lbnQiXSwgImNvdmVyX2Rlc2NyaXB0aW9uIjogIiJ9 A Base64-encoded contact sheet template in JSON format. |
width | integer Default: 500 Example: width=500 The width of the image to generate in pixels. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
Flix supports the installation and management of third-party application extensions. Extensions packages can be imported
to Flix by placing the compressed extension-package to the server-side directory thirdparty/extensions
. The Flix
Server will automatically import this file, and it will be accessible via the Flix Client extensions GUI.
The Flix Server supports the following extension formats:
.tar
.tar.gz
.zip
{- "extensions": [
- {
- "id": 102,
- "name": "Photoshop Plugin",
- "version": "1.0.0",
- "client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "applications": [
- {
- "name": "Adobe Photoshop",
- "versions": [
- "2022"
]
}
], - "type": "Sketch",
- "flix_api_versions": [
- "1.0.0"
], - "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "documentation_link": "string"
}
]
}
Creates an archive of a show containing its data and assets in a format that can be restored using a different Flix version or instance.
showId required | integer Example: 3 ID of the show. |
skip_transcoded_files | boolean Whether files generated by transcoding, e.g. thumbnails, should be skipped in order to produce a smaller archive file. If true, the files will be generated by transcoding when the show is restored. |
delete_after_archive | boolean Indicates that the show should be deleted following a successful archival. |
run_on | string <uuid> (uuid) ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]... Overrides the internal load balancing, forcing the server to run the job chain on the server matching the UUID. If the server with that ID is not contactable, the server receiving the request will run the job chain locally. If this field is omitted, the server receiving the request will load balance the job chain. |
{- "skip_transcoded_files": true,
- "delete_after_archive": true,
- "run_on": "ca934aea-4a53-41ad-8186-8aa4e01ddde0"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a new show and populates it with the data and assets from the given archive.
archive_path | string The path to the archive on the server. |
run_on | string <uuid> (uuid) ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]... Overrides the internal load balancing, forcing the server to run the job chain on the server matching the UUID. If the server with that ID is not contactable, the server receiving the request will run the job chain locally. If this field is omitted, the server receiving the request will load balance the job chain. The restore paths endpoint provides a list of servers and their available restorable file paths. When making a show restore request, ensure the RunOn value matches the appropriate server ID as provided from the paths endpoint. |
{- "archive_path": "/flix/backups/archive_15_2024-03-14 10:17:47.db",
- "run_on": "ca934aea-4a53-41ad-8186-8aa4e01ddde0"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Fetches all archive file paths from the backup directory which can be used in a restore show post request.
{- "archives": [
- {
- "server": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "region": "default",
- "ip": "192.168.1.104",
- "port": 8080,
- "running": true,
- "start_date": "2019-08-24T14:15:22Z",
- "hostname": "flix-001.example.com",
- "db_ident": "0dde4ef9-aa06-4517-b678-1829b7e9950a",
- "is_ssl": true,
- "transfer_port": 9091,
- "proxy_host": "proxy.flix.com",
- "proxy_port": 9090,
- "proxy_transfer_port": 9293
}, - "files": [
- {
- "show_title": "Kino's Journey",
- "show_description": "A story about a traveller and her talking motorcycle.",
- "show_tracking_code": "kin",
- "show_aspect_ratio": 1.85,
- "show_framerate": 24,
- "archived_by": "flixuser",
- "archived_at": "2019-08-24T14:15:22Z",
- "database_item_count": 34903,
- "file_size": 13003017,
- "archive_path": "/flix/backups/archive_15_2024-03-14 10:17:47.db",
- "filename": "archive_15_2024-03-14 10:17:47.db"
}
]
}
]
}
A show in Flix can hold either a list of sequences (for non-episodic shows), or a list of episodes that in turn contain sequences (for episodic shows).
id | integer A unique ID for this show. |
aspect_ratio required | number The aspect ratio for this show. |
created_date | string <date-time> When this show was created. |
description | string A description of this show. |
episodic | boolean Whether this is an episodic show. |
frame_rate required | number The framerate of this show in frames per second. |
Array of objects (UserGroup) A list of groups associated with this show. | |
hidden | boolean Whether this show is hidden. |
required | object (User) The user that created this show. |
show_thumbnail_id | integer The ID of the media object holding the thumbnail for this show. |
title required | string The title of this show. |
tracking_code required | string [ 1 .. 10 ] characters The tracking code of this show. |
state | string Enum: "active" "archiving" "archived" "deleting" "restoring" "archive_errored" "restore_errored" "delete_errored" The current state of the show, whether active or in the process of archiving, or archived. A show which is not active will return a 422 HTTP error on any request. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
id | integer A unique ID for this show. |
aspect_ratio required | number The aspect ratio for this show. |
created_date | string <date-time> When this show was created. |
description | string A description of this show. |
episodic | boolean Whether this is an episodic show. |
frame_rate required | number The framerate of this show in frames per second. |
Array of objects (UserGroup) A list of groups associated with this show. | |
hidden | boolean Whether this show is hidden. |
required | object (User) The user that created this show. |
show_thumbnail_id | integer The ID of the media object holding the thumbnail for this show. |
title required | string The title of this show. |
tracking_code required | string [ 1 .. 10 ] characters The tracking code of this show. |
state | string Enum: "active" "archiving" "archived" "deleting" "restoring" "archive_errored" "restore_errored" "delete_errored" The current state of the show, whether active or in the process of archiving, or archived. A show which is not active will return a 422 HTTP error on any request. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Deletes the show from the database, along with any sequences, panels and on-disk asset files owned by the show. Only available if the show has been archived or if it's a show that failed to restore from an archive. This endpoint will return a task ID that can be used to poll for the status of the job.
showId required | integer Example: 3 ID of the show. |
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Fetches the first 500 unhidden shows. It is not currently possible to retrieve more than 500 shows.
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
permissions | string Example: permissions=eyJuYW1lIjogImZsaXg6Oi91c2VycyIsICJtYXNrIjogNH0K A Base64-encoded permission object in the JSON format described in Group filtering. If specified, only items where the logged in user has the specified permission will be returned. |
{- "shows": [
- {
- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
Update a show from any of the locked states to make it active and accessible.
showId required | integer Example: 3 ID of the show. |
{- "id": 3,
- "aspect_ratio": 1.85,
- "created_date": "2019-08-24T14:15:22Z",
- "description": "A story about a traveller and her talking motorcycle.",
- "episodic": true,
- "frame_rate": 24,
- "groups": [
- {
- "id": 1,
- "title": "default"
}
], - "hidden": true,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "show_thumbnail_id": 1001,
- "title": "Kino's Journey",
- "tracking_code": "kin",
- "state": "active",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Creates a new episode within a show. Only valid if the show is episodic. Will respond with the hydrated episode object.
showId required | integer Example: 3 ID of the show. |
id | integer A unique ID for the episode. |
show_id | integer The ID of the show this episode belongs to. |
created_date | string <date-time> When the episode was created. |
episode_number | integer The number of the episode within the show. |
required | object (User) The user that created the show. |
description | string A description for the episode. Currently unused. |
title required | string The title of the episode. |
tracking_code | string The tracking code of the episode. |
Array of objects (Sequence) The sequences contained in this episode. | |
hidden | boolean Whether this episode is marked as hidden. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Updates an episode, replacing any existing values for the episode of the given ID.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
id | integer A unique ID for the episode. |
show_id | integer The ID of the show this episode belongs to. |
created_date | string <date-time> When the episode was created. |
episode_number | integer The number of the episode within the show. |
required | object (User) The user that created the show. |
description | string A description for the episode. Currently unused. |
title required | string The title of the episode. |
tracking_code | string The tracking code of the episode. |
Array of objects (Sequence) The sequences contained in this episode. | |
hidden | boolean Whether this episode is marked as hidden. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "episodes": [
- {
- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
This endpoint is identical to /show/{showID}/episodes
.
showId required | integer Example: 3 ID of the show. |
{- "episodes": [
- {
- "id": 30,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "episode_number": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "description": "string",
- "title": "Land of Adults (Natural Right)",
- "tracking_code": "0400",
- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "hidden": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
These endpoints concern managing sequences and sequence revisions within non-episodic shows.
Create a new sequence in the show. A show can contain a maximum of 500 sequences. This endpoint will return an error if a show already contains 500 sequences.
showId required | integer Example: 3 ID of the show. |
id | integer A unique ID of the sequence. |
show_id | integer |
episode_id | integer |
created_date | string <date-time> When the sequence was created. |
required | object (User) The user that created the sequence. |
revisions_count | integer The number of revisions of this sequence. |
panel_revision_count | integer The number of unique panel IDs contained in this sequence. |
deleted | boolean Whether this sequence has been soft deleted. Currently unused. |
description required | string A description of the sequence. |
tracking_code | string This sequence's tracking code. |
hidden | boolean Whether this sequence has been hidden. |
object (ColourTag) The highlight colour for the sequence. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
This endpoint will update the following properties:
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
id | integer A unique ID of the sequence. |
show_id | integer |
episode_id | integer |
created_date | string <date-time> When the sequence was created. |
required | object (User) The user that created the sequence. |
revisions_count | integer The number of revisions of this sequence. |
panel_revision_count | integer The number of unique panel IDs contained in this sequence. |
deleted | boolean Whether this sequence has been soft deleted. Currently unused. |
description required | string A description of the sequence. |
tracking_code | string This sequence's tracking code. |
hidden | boolean Whether this sequence has been hidden. |
object (ColourTag) The highlight colour for the sequence. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Soft delete a sequence. This sets the deleted
property to true.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
showId required | integer Example: 3 ID of the show. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
per_page | integer Example: per_page=100 The number of items per page to return. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
show_id | integer The ID of the show this sequence revision belongs to. |
sequence_id | integer The ID of the sequence this sequence revision belongs to. |
revision | integer What revision within the sequence this is. |
object (User) The user that created the sequence. | |
created_date | string <date-time> When the revision was created. |
Array of objects (SequencePanel) A list of panels in this sequence revision. | |
comment | string A comment describing this sequence revision. |
published | boolean Whether this sequence revision has been published to editorial. |
imported | boolean Whether this sequence revision has been imported from editorial. |
task_id | string The ID of the job chain that published this sequence revision. |
Array of objects (Asset) The assets holding the source files of this sequence revision, if any. | |
object (ColourTag) The highlight colour for the sequence revision. | |
hidden | boolean Whether this sequence revision is marked as hidden. |
autosave | boolean Whether this sequence revision was created by an autosave action in the Flix Client. This field cannot be patched. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
show_id | integer The ID of the show this sequence revision belongs to. |
sequence_id | integer The ID of the sequence this sequence revision belongs to. |
revision | integer What revision within the sequence this is. |
object (User) The user that created the sequence. | |
created_date | string <date-time> When the revision was created. |
Array of objects (SequencePanel) A list of panels in this sequence revision. | |
comment | string A comment describing this sequence revision. |
published | boolean Whether this sequence revision has been published to editorial. |
imported | boolean Whether this sequence revision has been imported from editorial. |
task_id | string The ID of the job chain that published this sequence revision. |
Array of objects (Asset) The assets holding the source files of this sequence revision, if any. | |
object (ColourTag) The highlight colour for the sequence revision. | |
hidden | boolean Whether this sequence revision is marked as hidden. |
autosave | boolean Whether this sequence revision was created by an autosave action in the Flix Client. This field cannot be patched. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
partial | boolean Default: false Enum: true false Example: partial=true Whether to return a sparse object. |
{- "sequence_revisions": [
- {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "media_objects": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": null,
- "height": null,
- "offset_x": null,
- "offset_y": null,
- "scale": null
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "deleted": true,
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
{- "sequence_revisions": [
- {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "media_objects": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": null,
- "height": null,
- "offset_x": null,
- "offset_y": null,
- "scale": null
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "deleted": true,
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
These endpoints concern managing sequences and sequence revisions within episodic shows.
Create a new sequence in the show. A show can contain a maximum of 500 sequences. This endpoint will return an error if a show already contains 500 sequences.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
id | integer A unique ID of the sequence. |
show_id | integer |
episode_id | integer |
created_date | string <date-time> When the sequence was created. |
required | object (User) The user that created the sequence. |
revisions_count | integer The number of revisions of this sequence. |
panel_revision_count | integer The number of unique panel IDs contained in this sequence. |
deleted | boolean Whether this sequence has been soft deleted. Currently unused. |
description required | string A description of the sequence. |
tracking_code | string This sequence's tracking code. |
hidden | boolean Whether this sequence has been hidden. |
object (ColourTag) The highlight colour for the sequence. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
This endpoint will update the following properties:
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
id | integer A unique ID of the sequence. |
show_id | integer |
episode_id | integer |
created_date | string <date-time> When the sequence was created. |
required | object (User) The user that created the sequence. |
revisions_count | integer The number of revisions of this sequence. |
panel_revision_count | integer The number of unique panel IDs contained in this sequence. |
deleted | boolean Whether this sequence has been soft deleted. Currently unused. |
description required | string A description of the sequence. |
tracking_code | string This sequence's tracking code. |
hidden | boolean Whether this sequence has been hidden. |
object (ColourTag) The highlight colour for the sequence. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Soft delete a sequence. This sets the deleted
property to true.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
showId required | integer Example: 3 ID of the show. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
per_page | integer Example: per_page=100 The number of items per page to return. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
per_page | integer Example: per_page=100 The number of items per page to return. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "sequences": [
- {
- "id": 20,
- "show_id": 4,
- "episode_id": 7,
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "revisions_count": 6,
- "panel_revision_count": 777,
- "deleted": true,
- "description": "Scene 1",
- "tracking_code": "0100",
- "hidden": true,
- "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
show_id | integer The ID of the show this sequence revision belongs to. |
sequence_id | integer The ID of the sequence this sequence revision belongs to. |
revision | integer What revision within the sequence this is. |
object (User) The user that created the sequence. | |
created_date | string <date-time> When the revision was created. |
Array of objects (SequencePanel) A list of panels in this sequence revision. | |
comment | string A comment describing this sequence revision. |
published | boolean Whether this sequence revision has been published to editorial. |
imported | boolean Whether this sequence revision has been imported from editorial. |
task_id | string The ID of the job chain that published this sequence revision. |
Array of objects (Asset) The assets holding the source files of this sequence revision, if any. | |
object (ColourTag) The highlight colour for the sequence revision. | |
hidden | boolean Whether this sequence revision is marked as hidden. |
autosave | boolean Whether this sequence revision was created by an autosave action in the Flix Client. This field cannot be patched. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
show_id | integer The ID of the show this sequence revision belongs to. |
sequence_id | integer The ID of the sequence this sequence revision belongs to. |
revision | integer What revision within the sequence this is. |
object (User) The user that created the sequence. | |
created_date | string <date-time> When the revision was created. |
Array of objects (SequencePanel) A list of panels in this sequence revision. | |
comment | string A comment describing this sequence revision. |
published | boolean Whether this sequence revision has been published to editorial. |
imported | boolean Whether this sequence revision has been imported from editorial. |
task_id | string The ID of the job chain that published this sequence revision. |
Array of objects (Asset) The assets holding the source files of this sequence revision, if any. | |
object (ColourTag) The highlight colour for the sequence revision. | |
hidden | boolean Whether this sequence revision is marked as hidden. |
autosave | boolean Whether this sequence revision was created by an autosave action in the Flix Client. This field cannot be patched. |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
partial | boolean Default: false Enum: true false Example: partial=true Whether to return a sparse object. |
{- "sequence_revisions": [
- {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "media_objects": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": null,
- "height": null,
- "offset_x": null,
- "offset_y": null,
- "scale": null
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "deleted": true,
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
{- "sequence_revisions": [
- {
- "show_id": 3,
- "sequence_id": 5,
- "revision": 8,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "revisioned_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "media_objects": {
- "property1": [
- null
], - "property2": [
- null
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": null,
- "height": null,
- "offset_x": null,
- "offset_y": null,
- "scale": null
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "deleted": true,
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
], - "comment": "Final version",
- "published": true,
- "imported": true,
- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "source_files": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
], - "colour_tag": {
- "id": 0,
- "colour_name": "string",
- "value": "string"
}, - "hidden": true,
- "autosave": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
Within Flix, a panel is a wrapper for a revisionable image or animated clip.
Each panel has a non-zero number of panel revisions. Each panel revision has exactly one asset associated with it. Note, however, that multiple panel revisions can be associated with the same asset.
Panel IDs are not intended to be sequential; rather, they are unique references within a given sequence. On the other hand, the revision numbers of the revisions of a panel will be sequential.
A panel can only exist once within a sequence revision.
If a panel revision is brought into a sequence revision via the library, for example, and the panel already exists within that sequence revision, a "duplicate" will be created.
Panel revisions have a duplicate
property allowing the user to track where a panel revision has been duplicated from.
Creates a single new panel, and a panel revision within it, and saves it to the database. If the asset ID on the panel is either not set, or set to 0, Flix will assign a blank asset to this panel. Responds with the first revision of the panel.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
sequence_id | integer The ID of the sequence this panel revision belongs to. |
show_id | integer The ID of the show this panel revision belongs to. |
panel_id | integer The ID of the panel that this object is a revision of. |
revision_number | integer What revision of the panel this is. |
created_date | string <date-time> When this panel revision was created. |
object (Asset) The asset holding the artwork for this panel revision. | |
object (User) The user that created this panel revision. | |
published | integer (PublishedStatus) Indicates that this panel has been published if non-nil, and additionally in what sequence revision it was published if known. |
is_ref | boolean Whether this is a ref panel. |
object (PanelComment) The newest comment that hasn't been closed for this panel revision. | |
origin | string Enum: "Flix" "Storyboard Pro" "Photoshop" "Premiere" "Avid" "Manual Import" The original source of the panel revision. |
object (OriginAvidValues) Contains information about panel revisions imported from Avid. | |
object (OriginSBPValues) Contains information about panel revisions imported from Storyboard Pro. | |
object (OriginFCPXMLValues) Contains information about panel revisions imported using FCPXML, e.g. from Premiere. | |
Array of objects (List) The camera move keyframes on this panel revisions. | |
layer_transform | boolean Whether the panel revision had a layer transform applied to it in Storyboard Pro. |
object (DuplicateRef) An optional structure, filled if this panel revision has been duplicated from another. | |
related_panels | Array of objects (PanelRevision) A list of panel revisions that this panel is composed of, if this is a ref panel. |
object (Panel) The Panel this revision belongs to. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
{- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Creates a new panel revision for a panel. The panel ID should already exist. If the asset ID on the panel is either not set, or set to 0, Flix will assign a blank asset to this panel revision.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
sequence_id | integer The ID of the sequence this panel revision belongs to. |
show_id | integer The ID of the show this panel revision belongs to. |
panel_id | integer The ID of the panel that this object is a revision of. |
revision_number | integer What revision of the panel this is. |
created_date | string <date-time> When this panel revision was created. |
object (Asset) The asset holding the artwork for this panel revision. | |
object (User) The user that created this panel revision. | |
published | integer (PublishedStatus) Indicates that this panel has been published if non-nil, and additionally in what sequence revision it was published if known. |
is_ref | boolean Whether this is a ref panel. |
object (PanelComment) The newest comment that hasn't been closed for this panel revision. | |
origin | string Enum: "Flix" "Storyboard Pro" "Photoshop" "Premiere" "Avid" "Manual Import" The original source of the panel revision. |
object (OriginAvidValues) Contains information about panel revisions imported from Avid. | |
object (OriginSBPValues) Contains information about panel revisions imported from Storyboard Pro. | |
object (OriginFCPXMLValues) Contains information about panel revisions imported using FCPXML, e.g. from Premiere. | |
Array of objects (List) The camera move keyframes on this panel revisions. | |
layer_transform | boolean Whether the panel revision had a layer transform applied to it in Storyboard Pro. |
object (DuplicateRef) An optional structure, filled if this panel revision has been duplicated from another. | |
related_panels | Array of objects (PanelRevision) A list of panel revisions that this panel is composed of, if this is a ref panel. |
object (Panel) The Panel this revision belongs to. | |
Array of objects (FieldList) A list of metadata fields for this object. |
{- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
{- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
Creates multiple new panels in one request. A new panel ID and panel revision will be created for each panel. If the asset ID on any panel is either not set, or set to 0, Flix will assign a blank asset to this panel.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
sequence_id | integer The ID of the sequence this panel revision belongs to. |
show_id | integer The ID of the show this panel revision belongs to. |
panel_id | integer The ID of the panel that this object is a revision of. |
revision_number | integer What revision of the panel this is. |
created_date | string <date-time> When this panel revision was created. |
object (Asset) The asset holding the artwork for this panel revision. | |
object (User) The user that created this panel revision. | |
published | integer (PublishedStatus) Indicates that this panel has been published if non-nil, and additionally in what sequence revision it was published if known. |
is_ref | boolean Whether this is a ref panel. |
object (PanelComment) The newest comment that hasn't been closed for this panel revision. | |
origin | string Enum: "Flix" "Storyboard Pro" "Photoshop" "Premiere" "Avid" "Manual Import" The original source of the panel revision. |
object (OriginAvidValues) Contains information about panel revisions imported from Avid. | |
object (OriginSBPValues) Contains information about panel revisions imported from Storyboard Pro. | |
object (OriginFCPXMLValues) Contains information about panel revisions imported using FCPXML, e.g. from Premiere. | |
Array of objects (List) The camera move keyframes on this panel revisions. | |
layer_transform | boolean Whether the panel revision had a layer transform applied to it in Storyboard Pro. |
object (DuplicateRef) An optional structure, filled if this panel revision has been duplicated from another. | |
related_panels | Array of objects (PanelRevision) A list of panel revisions that this panel is composed of, if this is a ref panel. |
object (Panel) The Panel this revision belongs to. | |
Array of objects (FieldList) A list of metadata fields for this object. |
[- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
per_page | integer Example: per_page=100 The number of items per page to return. |
showAll | boolean Enum: true false Example: showAll=true Whether to show all items. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- null
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": null,
- "deleted": null,
- "email": null,
- "groups": null,
- "id": null,
- "is_admin": null,
- "is_system": null,
- "is_third_party": null,
- "password": null,
- "type": null,
- "username": null,
- "metadata": null
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": null,
- "Max": null
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
], - "sequence_revision": 0,
- "duration": 12,
- "trim_in_frame": 3,
- "trim_out_frame": 15,
- "dialogue": {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}, - "hidden": true
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
showAll | boolean Enum: true false Example: showAll=true Whether to show all items. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
showId required | integer Example: 3 ID of the show. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
Returns all panel revisions with assets matching the given MD5 checksums.
The returned object will be a mapping from checksums to a list of matching panel revisions.
If any checksum contains -
s, the server will remove them before searching the database. If the checksum is
requested with hyphens, it will be returned with hyphens. If there are no panels associated with a given checksum,
that checksum entry will be mapped to an empty array in the response.
showId required | integer Example: 3 ID of the show. |
checksums | Array of strings The list of checksums to search for, either an MD5 hash of the panel artwork, or a Storyboard Pro clip ID. |
checksum_type required | string Enum: "ContentHash" "SBPClipID" The type of checksum to use. |
{- "checksums": [
- "6a253ff13ee1f43204de5d6c0f71eab1",
- "1a89ec9e31d077e3f4f69acc064b8331"
], - "checksum_type": "ContentHash"
}
{- "panels": {
- "property1": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
], - "property2": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
}
Returns all panel revisions containing the asset with the given ID. If no panel revisions are found, an empty array will be returned.
showId required | integer Example: 3 ID of the show. |
assetId required | integer Example: 42 ID of the asset. |
metadata | boolean Default: true Enum: true false Whether to include metadata. |
{- "panels": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
Create new revisions of the given panels.
The new revisions will be copied from the panel revisions specified in the request body, with the exception of the published
field which will be set to false
.
The revision numbers of the new panel revisions will follow from the highest revision number for each respective panel, which will not necessarily be the revision numbers specified in the request. For instance, if a panel has five revisions, and this endpoint is called for revision two, the new panel revision will have a revision number of six, but with its data copied from revision two.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
Array of objects (PanelIDRev) A list of panel IDs and revisions identifying what panels to version up. |
{- "panel_revisions": [
- {
- "panel_id": 20,
- "panel_revision": 2
}
]
}
{- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
If a metadata field name is provided, this endpoint returns a single field. Otherwise, a list of all metadata for the object is returned.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
[ ]
Updates the metadata for the object while leaving fields not included in the request unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
[- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
When providing a list of metadata, updates the metadata for the object, removing any fields not specified. When operating on a single field, the field will be replaced or created as needed, while leaving other metadata fields unchanged.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
name | string The user defined indexable name of the field. Each metadata field value must have a name unique to the entity. For example, a Sequence cannot have more than one metadata field named 'scene' |
boolean or string or number or integer or any or string or Array of strings The value of the metadata field. Value can be set to null to represent an unset value. | |
value_type | string Enum: "bool" "datetime" "float" "int" "object" "string" "stringarray" The name of the type this Field's Value takes. |
created_date | string <date-time> Set automatically at the metadata fields creation; it is immutable. |
modified_date | string <date-time> Set automatically every time the metadata field is updated in the database; it is immutable. |
[ ]
[ ]
Deletes a single field from the object's metadata list.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
name required | string Example: name=comment The name of a metadata field. If provided, the endpoint will return or modify a single field rather than a list of metadata fields. |
{- "error_number": 0,
- "message": "forbidden",
- "status_code": 403
}
Returns all comments associated with the given panel ID.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
limit | integer Example: limit=50 The maximum count of items. |
order_by | string Example: order_by=closed_at The field to order the return values by. |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Order the return values ascending or descending. |
{- "comments": [
- {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}
]
}
This endpoint will update the fields related to resolving comments. Fields not specified will not be updated.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
commentId required | integer Example: 10 ID of the comment. |
closer_user_id | integer The ID of the user that closed the comment. |
closed_date | string <date-time> When the comment was closed. |
closed | boolean Whether the comment has been closed. |
{- "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true
}
{- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
body required | string The text of the comment. |
created_date | string <date-time> When the comment was created. |
deleted | boolean Whether the comment has been deleted. |
id | integer A unique ID for this comment. |
show_id | integer |
object (User) The user that created this comment. | |
closer_user_id | integer The ID of the user that closed the comment. |
closed_date | string <date-time> When the comment was closed. |
closed | boolean Whether the comment has been closed. |
panel_id required | integer The ID of the panel this comment is associated with. |
revision_id required | integer The panel revision this comment is associated with. |
{- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}
{- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}
showId required | integer Example: 3 ID of the show. |
dialogue_id | integer The ID of the dialogue. |
show_id | integer The ID of the show this dialogue entry belongs to. |
text required | string The text of the dialogue. |
created_date | string <date-time> When the dialogue was created. |
required | object (User) The user that created the dialogue. |
{- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
{- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
{- "dialogues": [
- {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
panelId required | integer Example: 4 ID of the panel. |
{- "dialogues": [
- {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
]
}
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "dialogues": [
- {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
]
}
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "dialogues": [
- {
- "dialogue_id": 22,
- "show_id": 4,
- "text": "Welcome, traveler!",
- "created_date": "2019-08-24T14:15:22Z",
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
}
]
}
Flix provides a number of abstractions around file storage to make it easier to work with collections of files.
A media object is a wrapper for a file on disk.
Each media object has a ref
string value, which indicates the type of file the media object represents. Examples of ref
s are:
A media object cannot exist on its own, and must have an asset it belongs to.
id | integer A unique ID for this media object. |
asset_id | integer The ID of the asset this media object belongs to. |
name | string The name of the file described by this media object. Only set if the status is "uploaded". |
content_type | string The content type of the file described by this media object. Only set if the status is "uploaded". |
content_length | integer The size in bytes of the file described by this media object. Only set if the status is "uploaded". |
Array of objects (HashList) The list of hash values used to describe the media object for the purpose of reusing. | |
created_date | string <date-time> When this media object was created. |
status | integer Enum: 0 1 2 The status of this media object, either initialised (0), uploaded (1), or errored (2). |
object (User) The user that created this media object. | |
asset_type | string A string specifying what type of media object this is. |
object (Rectangle) The dimensions of the underlying image. This will be omitted if the file is not an image. |
{- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
An asset is a collection of zero or more media objects.
A typical asset—for a panel revision, for example—would contain one artwork
media object, which is the original art imported by the artist; a PSD file would be common.
It might also contain thumbnail
, scaled
and fullres
media objects which are the result of a transcode request—one of each for still panels, or multiple for animated panels.
If a panel revision has been published to an AAF, its asset will also contain published
and dnxhd
media object refs.
asset_id | integer The ID of the asset. |
show_id | integer The show the asset is associated with. |
created_date | string <date-time> When the asset was created. |
object (User) The user that created the asset. | |
object Maps ref strings to a list of media objects. |
{- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
File content for media objects can be fetched directly from the API.
Uploading files to a media object is current only supported via the Flix Transfer Utility application which is distributed with the Flix Client. As such a typical panel image upload process for Flix would look like:
showId required | integer Example: 3 ID of the show. |
asset_count required | integer The number of assets to create. |
{- "asset_count": 5
}
{- "assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
assetId required | integer Example: 42 ID of the asset. |
{- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
Returns all assets which are associated with one or more panel revisions within the given sequence revision. Any assets which have uploaded artwork but no thumbnails will be asynchronously transcoded.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
Returns all assets which are associated with one or more panel revisions within the given sequence revision. Any assets which have uploaded artwork but no thumbnails will be asynchronously transcoded.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
Creates media objects of a particular ref on multiple assets.
New media objects will be mostly empty, with a status of initialised
.
After creating assets, this endpoint can be used to create media objects within the assets which are ready to have files uploaded to them.
showId required | integer Example: 3 ID of the show. |
ref required | string[a-z_]+ Examples:
Ref string of the media object(s). |
asset_ids required | Array of integers A list of asset IDs. |
{- "asset_ids": [
- 4,
- 8,
- 20,
- 22
]
}
{- "media_objects": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
mediaObjectId required | integer Example: 1337 ID of the media object. |
{- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
mediaObjectId required | integer Example: 1337 ID of the media object. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
Transcodes the artwork ref media object into thumbnails, scaled and fullres media objects. This is done in batches which are distributed across all servers. Requesting a transcode on an asset which has already been transcoded will perform no action and return no error.
showId required | integer Example: 3 ID of the show. |
asset_ids required | Array of integers A list of asset IDs. |
transcode_from | string Enum: "artwork" "source_file" The asset type to transcode from. If not specified, source_media will be used if present, otherwise artwork. |
transcode_to | Array of strings What asset types to transcode to. If not specified, thumbnail, scaled and fullres asset types will be generated. |
{- "asset_ids": [
- 4,
- 8,
- 20,
- 22
], - "transcode_from": "source_file",
- "transcode_to": [
- "scaled",
- "thumbnail"
]
}
{- "task_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
Transcodes the artwork of all panels in the specified sequence revision into thumbnails, scaled and fullres media objects. This is done in batches which are distributed across all servers. Requesting a transcode on an asset which has already been transcoded will perform no action and return no error.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "task_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
Transcodes the artwork of all panels in the specified sequence revision into thumbnails, scaled and fullres media objects. This is done in batches which are distributed across all servers. Requesting a transcode on an asset which has already been transcoded will perform no action and return no error.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
{- "task_ids": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
Creates a source file from the given source file asset and associates it with the given child assets.
showId required | integer Example: 3 ID of the show. |
entity_id | integer The ID of the entity that holds the source file information. |
show_id | integer The ID of the show this source file belongs to. |
required | object (Asset) The asset holding the file data for this source file. |
object (Asset) An image asset that can be used to preview this source file, if available. | |
object (User) The user that created this source file. | |
created_date | string <date-time> When this source file was created. |
origin required | string The application from which this source file originates. |
source_file_type required | string The type of this source file. |
extension_client_uid | string The UID of the extension that sent this source file, if any. |
extension_version | string An optional version for the extension that sent this source file. |
Array of objects (Asset) The assets that were created from this source file. |
{- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
{- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
Retrieves the source file with the given entity ID.
showId required | integer Example: 3 ID of the show. |
entityID required | integer Example: 91 ID of the entity. |
{- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": null,
- "title": null
}, - "role": {
- "id": null,
- "name": null,
- "permissions": null
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
]
}
Returns all source files matching the given filters within the shows the user has access to.
shows | integer Example: shows=6,21 A comma-separated list of show IDs to filter by. |
sequences | integer Example: sequences=8,10 A comma-separated list of sequence IDs to filter by. |
child_assets | integer Example: child_assets=153,5,6346 The IDs of the assets whose source files to fetch. |
users | integer Example: users=1,3,9 A comma-separated list of owner user IDs to filter by. |
origin | string Example: origin=Photoshop The origin to filter items by. |
startDate | string <date> Example: startDate=2003-01-20 Restricts the results to items created on or after the given date. |
endDate | string <date> Example: endDate=2022-06-30 Restricts the results to items created prior to the given date. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
must_have_preview | boolean Default: true Enum: true false Whether to only return source files that have preview assets. |
per_page | integer Example: per_page=100 The number of items per page to return. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
order_by | string Example: order_by=closed_at The field to order the return values by. |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Order the return values ascending or descending. |
object Example: after[id]=10 Limits the results to items that follow the one with the given IDs. | |
object Example: before[id]=23 Limits the results to items that precede the one with the given IDs. |
{- "source_files": [
- {
- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
]
}
], - "navigation": {
- "self": "/sourcefiles?per_page=9",
- "first": "/sourcefiles?per_page=9",
- "last": "/sourcefiles?page=-1&per_page=9",
- "next": "/sourcefiles?after%5Bid%5D=61&per_page=9",
- "previous": "/sourcefiles?before%5Bid%5D=45&page=-1&per_page=9"
}
}
Returns all source files within the given show matching the given filters.
showId required | integer Example: 3 ID of the show. |
sequences | integer Example: sequences=8,10 A comma-separated list of sequence IDs to filter by. |
child_assets | integer Example: child_assets=153,5,6346 The IDs of the assets whose source files to fetch. |
users | integer Example: users=1,3,9 A comma-separated list of owner user IDs to filter by. |
origin | string Example: origin=Photoshop The origin to filter items by. |
startDate | string <date> Example: startDate=2003-01-20 Restricts the results to items created on or after the given date. |
endDate | string <date> Example: endDate=2022-06-30 Restricts the results to items created prior to the given date. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
must_have_preview | boolean Default: true Enum: true false Whether to only return source files that have preview assets. |
per_page | integer Example: per_page=100 The number of items per page to return. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
order_by | string Example: order_by=closed_at The field to order the return values by. |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Order the return values ascending or descending. |
object Example: after[id]=10 Limits the results to items that follow the one with the given IDs. | |
object Example: before[id]=23 Limits the results to items that precede the one with the given IDs. |
{- "source_files": [
- {
- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
]
}
], - "navigation": {
- "self": "/sourcefiles?per_page=9",
- "first": "/sourcefiles?per_page=9",
- "last": "/sourcefiles?page=-1&per_page=9",
- "next": "/sourcefiles?after%5Bid%5D=61&per_page=9",
- "previous": "/sourcefiles?before%5Bid%5D=45&page=-1&per_page=9"
}
}
Returns all source files associated with the given asset matching the given filters.
showId required | integer Example: 3 ID of the show. |
assetId required | integer Example: 42 ID of the asset. |
sequences | integer Example: sequences=8,10 A comma-separated list of sequence IDs to filter by. |
users | integer Example: users=1,3,9 A comma-separated list of owner user IDs to filter by. |
origin | string Example: origin=Photoshop The origin to filter items by. |
startDate | string <date> Example: startDate=2003-01-20 Restricts the results to items created on or after the given date. |
endDate | string <date> Example: endDate=2022-06-30 Restricts the results to items created prior to the given date. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
must_have_preview | boolean Default: true Enum: true false Whether to only return source files that have preview assets. |
per_page | integer Example: per_page=100 The number of items per page to return. |
page | integer Example: page=3 What page to return. When possible, avoid in favour of after/before. |
order_by | string Example: order_by=closed_at The field to order the return values by. |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Order the return values ascending or descending. |
object Example: after[id]=10 Limits the results to items that follow the one with the given IDs. | |
object Example: before[id]=23 Limits the results to items that precede the one with the given IDs. |
{- "source_files": [
- {
- "entity_id": 91,
- "show_id": 5,
- "source_file_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "preview_asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "origin": "Maya",
- "source_file_type": "3D",
- "extension_client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "extension_version": "1.0.0",
- "child_assets": [
- {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": null,
- "source_type": null,
- "data": null
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- null
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- null
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": null,
- "Y": null
}, - "Max": {
- "X": null,
- "Y": null
}
}
}
]
}
}
]
}
], - "navigation": {
- "self": "/sourcefiles?per_page=9",
- "first": "/sourcefiles?per_page=9",
- "last": "/sourcefiles?page=-1&per_page=9",
- "next": "/sourcefiles?after%5Bid%5D=61&per_page=9",
- "previous": "/sourcefiles?before%5Bid%5D=45&page=-1&per_page=9"
}
}
Returns an arbitrary asset containing a media object whose file hash matches the given MD5 checksum.
showId required | integer Example: 3 ID of the show. |
checksum required | string Example: checksum=37f4b035e9da8a421a7853d696541152 MD5 checksum of the asset's media object. |
{- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
Patches the hash values on the media object. Any fields on the media object in the request body will be ignored. This endpoint will also update the owner of the media object to the logged in user.
showId required | integer Example: 3 ID of the show. |
mediaObjectId required | integer Example: 1337 ID of the media object. |
id | integer A unique ID for this media object. |
asset_id | integer The ID of the asset this media object belongs to. |
name | string The name of the file described by this media object. Only set if the status is "uploaded". |
content_type | string The content type of the file described by this media object. Only set if the status is "uploaded". |
content_length | integer The size in bytes of the file described by this media object. Only set if the status is "uploaded". |
Array of objects (HashList) The list of hash values used to describe the media object for the purpose of reusing. | |
created_date | string <date-time> When this media object was created. |
status | integer Enum: 0 1 2 The status of this media object, either initialised (0), uploaded (1), or errored (2). |
object (User) The user that created this media object. | |
asset_type | string A string specifying what type of media object this is. |
object (Rectangle) The dimensions of the underlying image. This will be omitted if the file is not an image. |
{- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
{- "media_objects": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
Returns a mapping of media objects whose hash, or hashes, match the hash values provided. This can be used by the caller to establish whether a file needs to be uploaded, or can be a media object already on the server can be reused.
showId required | integer Example: 3 ID of the show. |
hashes required | string Example: hashes=eyJ0eXBlcyI6W3sidHlwZSI6InNlcXVlbmNlX3JldmlzaW9uX3R5cGUiLCJzaG93X2lkIjoxfSx7InR5cGUiOiJzZXF1ZW5jZV9yZXZpc2lvbl90eXBlIiwic2hvd19pZCI6Mn1dfQo= A Base64-encoded query object of a list of hash values. This should take form described in Media object hashes. |
{- "matches": [
- {
- "hash": {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}, - "media_objects": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
]
}
Returns a mapping of media objects whose hash, or hashes, match the hash values provided. This can be used by the caller to establish whether a file needs to be uploaded, or can be a media object already on the server can be reused. This works the same as the media object from hashes endpoint, except this is grouped by filename.
showId required | integer Example: 3 ID of the show. |
hashes required | string Example: hashes=ewoJIm15LWltYWdlLTEucHNkIjogWwoJCXsKCQkJInZhbHVlIjogImNlYjg5NTcxMDJhMDM1MjNmZDY2ZjM5YWJlOTRjZjMyIiwKCQkJInNvdXJjZV90eXBlIjogImZpbGUubWQ1IiwKCQkJImZ1bGxfbWF0Y2giOiB0cnVlCgkJfQoJXSwKCSJteS1pbWFnZS0yLnBzZCI6IFsKCQl7CgkJCSJ2YWx1ZSI6ICJkZWI4OTU3MTAyYTAzNTIzZmQ2NmYzOWFiZTk0Y2YzMiIsCgkJCSJzb3VyY2VfdHlwZSI6ICJmaWxlLm1kNSIsCgkJCSJmdWxsX21hdGNoIjogdHJ1ZQoJCX0sCgkJewoJCQkidmFsdWUiOiAiWygyLjMsIDMuNyksICg1LjAsIDAuMiksICgxLjEsIC0zLjMpXSIsCgkJCSJzb3VyY2VfdHlwZSI6ICJpbWFnZS5hbGdvMS5waXhlbF9kaXN0YW5jZSIsCgkJCSJmdWxsX21hdGNoIjogZmFsc2UKCQl9CgldCn0K A Base64-encoded query object of a list of hash values. This should take form described in Media object hashes by filenames. |
{- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
Some entity endpoints accept a query parameter, q
, that allows you to filter the result of the request.
The query parameter should be a Base64-encoded JSON object with the following format:
Array of asset_type (object) or extension_origin_type (object) or origin_type (object) or sequence_revision_type (object) or source_file_type (object) A list of types to retrieve for each entity. |
{- "types": [
- {
- "type": "sequence_revision_type",
- "show_id": 5
}, - {
- "type": "source_file_type"
}
]
}
Fetch a single entity using the Entity ID. Optionally takes a max depth for children, determining how many levels of child and parent entities to fetch. Additionally a Base64-encoded filter object may be supplied to request entity types and filter on arbitrary fields, as described in Entity query objects.
showId required | integer Example: 3 ID of the show. |
entityID required | integer Example: 91 ID of the entity. |
q | string Example: q=eyJ0eXBlcyI6W3sidHlwZSI6InNlcXVlbmNlX3JldmlzaW9uX3R5cGUiLCJzaG93X2lkIjoxfSx7InR5cGUiOiJzZXF1ZW5jZV9yZXZpc2lvbl90eXBlIiwic2hvd19pZCI6Mn1dfQo= A Base64-encoded query object used to apply complex filters to requests. This should take form described in Entity query objects. |
max_depth | integer Default: 0 Example: max_depth=3 How many levels of children and parents to fetch. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
Replaces the stored entity with the one sent in the request. Note that this will not remove types or children.
showId required | integer Example: 3 ID of the show. |
entityID required | integer Example: 91 ID of the entity. |
q | string Example: q=eyJ0eXBlcyI6W3sidHlwZSI6InNlcXVlbmNlX3JldmlzaW9uX3R5cGUiLCJzaG93X2lkIjoxfSx7InR5cGUiOiJzZXF1ZW5jZV9yZXZpc2lvbl90eXBlIiwic2hvd19pZCI6Mn1dfQo= A Base64-encoded query object used to apply complex filters to requests. This should take form described in Entity query objects. |
max_depth | integer Default: 0 Example: max_depth=3 How many levels of children and parents to fetch. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
id | integer The unique ID for this Entity. |
show_id | integer The ID of the show this entity belongs to. |
object (User) The user that created this entity. | |
created_date | string <date-time> The datetime this entity was created, this is set automatically and immutable. |
modified_date | string <date-time> The datetime this entity was last modified, this is set automatically. |
data | any Arbitrary JSON data which can be set and retrieved by via the API. |
Array of objects or objects or objects or objects or objects (TypeList) A list of types this entity takes the form of. | |
object (RelationMap) A map of children of this entity, categorised by the type of relation between each child and this entity. | |
object (RelationMap) A map of parents to this entity, categorised by the type of relation between this entity and each parent. | |
hidden | boolean True if the entity has been soft-deleted. |
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
Updates the stored entity with the data provided in the request. Fields not specified will not be updated. Note that this will not remove types or children.
showId required | integer Example: 3 ID of the show. |
entityID required | integer Example: 91 ID of the entity. |
q | string Example: q=eyJ0eXBlcyI6W3sidHlwZSI6InNlcXVlbmNlX3JldmlzaW9uX3R5cGUiLCJzaG93X2lkIjoxfSx7InR5cGUiOiJzZXF1ZW5jZV9yZXZpc2lvbl90eXBlIiwic2hvd19pZCI6Mn1dfQo= A Base64-encoded query object used to apply complex filters to requests. This should take form described in Entity query objects. |
max_depth | integer Default: 0 Example: max_depth=3 How many levels of children and parents to fetch. |
display_hidden | boolean Enum: true false Example: display_hidden=true Whether to show hidden items. |
id | integer The unique ID for this Entity. |
show_id | integer The ID of the show this entity belongs to. |
object (User) The user that created this entity. | |
created_date | string <date-time> The datetime this entity was created, this is set automatically and immutable. |
modified_date | string <date-time> The datetime this entity was last modified, this is set automatically. |
data | any Arbitrary JSON data which can be set and retrieved by via the API. |
Array of objects or objects or objects or objects or objects (TypeList) A list of types this entity takes the form of. | |
object (RelationMap) A map of children of this entity, categorised by the type of relation between each child and this entity. | |
object (RelationMap) A map of parents to this entity, categorised by the type of relation between this entity and each parent. | |
hidden | boolean True if the entity has been soft-deleted. |
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
This will set the hidden
field on the entity.
showId required | integer Example: 3 ID of the show. |
entityID required | integer Example: 91 ID of the entity. |
q | string Example: q=eyJ0eXBlcyI6W3sidHlwZSI6InNlcXVlbmNlX3JldmlzaW9uX3R5cGUiLCJzaG93X2lkIjoxfSx7InR5cGUiOiJzZXF1ZW5jZV9yZXZpc2lvbl90eXBlIiwic2hvd19pZCI6Mn1dfQo= A Base64-encoded query object used to apply complex filters to requests. This should take form described in Entity query objects. |
max_depth | integer Default: 0 Example: max_depth=3 How many levels of children and parents to fetch. |
{- "error_number": 0,
- "message": "bad request",
- "status_code": 400
}
The provided entity must have no ID set.
showId required | integer Example: 3 ID of the show. |
id | integer The unique ID for this Entity. |
show_id | integer The ID of the show this entity belongs to. |
object (User) The user that created this entity. | |
created_date | string <date-time> The datetime this entity was created, this is set automatically and immutable. |
modified_date | string <date-time> The datetime this entity was last modified, this is set automatically. |
data | any Arbitrary JSON data which can be set and retrieved by via the API. |
Array of objects or objects or objects or objects or objects (TypeList) A list of types this entity takes the form of. | |
object (RelationMap) A map of children of this entity, categorised by the type of relation between each child and this entity. | |
object (RelationMap) A map of parents to this entity, categorised by the type of relation between this entity and each parent. | |
hidden | boolean True if the entity has been soft-deleted. |
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
{- "id": 124,
- "show_id": 3,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z",
- "data": null,
- "type_data": [
- {
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}
}
], - "children": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "parents": {
- "created_from": [
- { }
], - "preview_of": [
- { }
]
}, - "hidden": true
}
Creates a new sequence revision based on an AAF format.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a new sequence revision based on an AAF format.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
The reconform endpoint will create a sequence revision from a Premiere FCPXML format.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
The reconform endpoint will create a sequence revision from a Premiere FCPXML format.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
The reconform endpoint will create a sequence revision from a SBP FCPXML.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
The reconform endpoint will create a sequence revision from a SBP FCPXML.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
asset_id required | integer The asset ID of the AAF to import from Avid, or the reference MOV when importing from Premiere. |
comment | string Describes the intent of the import. |
object Holds a map of Storyboard Pro audio files to asset IDs. | |
object Holds a map from Storyboard Pro panel IDs to the hashes of the panel artwork PSD. | |
match_disabled | boolean Will, if set, will skip attempting to match artwork from SBP, preventing any asset reuse. |
object Holds settings used for publishing. | |
sbp_project_filepath | string The path on the user's machine to the Storyboard Pro project being imported. |
source_files | Array of integers The IDs of the assets holding the source files. Currently only the first source file will be used. |
xml_asset | string Holds the FCPXML data from Storyboard Pro or Premiere. |
sboard_asset | string Holds the .sboard data when importing from Storyboard Pro. |
{- "asset_id": 42,
- "comment": "Second round of changes",
- "sbp_files": {
- "property1": 0,
- "property2": 0
}, - "artwork_hashes": {
- "property1": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "property2": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
]
}, - "match_disabled": true,
- "publish_settings": {
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "bitrate": "36M",
- "marker_type": "clip"
}, - "sbp_project_filepath": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "source_files": [
- 45
], - "xml_asset": "string",
- "sboard_asset": "string"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a dialogue file containing the dialogue of all panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the dialogue job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
format required | string Enum: "avid" "srt" The format to use to export the dialogue. |
clip_name required | string The format of the clip name of this dialogue in Avid. |
Array of objects (PanelRevision) A list of panel revisions. If supplied, the dialogue file will only contain the dialogue from these revisions. |
{- "format": "avid",
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a dialogue file containing the dialogue of all panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the dialogue job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
format required | string Enum: "avid" "srt" The format to use to export the dialogue. |
clip_name required | string The format of the clip name of this dialogue in Avid. |
Array of objects (PanelRevision) A list of panel revisions. If supplied, the dialogue file will only contain the dialogue from these revisions. |
{- "format": "avid",
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a QuickTime file from all the panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the QuickTime job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
include_dialogue | boolean Default: false Whether to create an SRT subtitle file from the dialogue. |
Array of objects (PanelRevision) A list of panel revisions. If included, the quicktime will only contain the provided revisions. |
{- "include_dialogue": false,
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a QuickTime file from all the panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the QuickTime job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
include_dialogue | boolean Default: false Whether to create an SRT subtitle file from the dialogue. |
Array of objects (PanelRevision) A list of panel revisions. If included, the quicktime will only contain the provided revisions. |
{- "include_dialogue": false,
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a contact sheet PDF file from all the panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the contact sheet job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
contactsheet_id required | integer The ID of the contact sheet template to use. Must be assigned to the show the sequence revision to export belongs to. |
Array of objects (PanelRevision) A list of panel revisions. If included, the contact sheet will only contain the provided revisions. |
{- "contactsheet_id": 5,
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a contact sheet PDF file from all the panels in the given sequence, or the specific panel revisions specified.
This endpoint will return a task ID that can be used to poll for the status of the contact sheet job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
contactsheet_id required | integer The ID of the contact sheet template to use. Must be assigned to the show the sequence revision to export belongs to. |
Array of objects (PanelRevision) A list of panel revisions. If included, the contact sheet will only contain the provided revisions. |
{- "contactsheet_id": 5,
- "panel_revisions": [
- {
- "sequence_id": 3,
- "show_id": 3,
- "panel_id": 5,
- "revision_number": 1,
- "created_date": "2019-08-24T14:15:22Z",
- "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": null,
- "role": null
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": null,
- "value": null,
- "value_type": null,
- "created_date": null,
- "modified_date": null
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "published": 0,
- "is_ref": true,
- "latest_open_comment": {
- "body": "Can we make this a bit shorter?",
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "id": 22,
- "show_id": 4,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "closer_user_id": 10,
- "closed_date": "2019-08-24T14:15:22Z",
- "closed": true,
- "panel_id": 5,
- "revision_id": 8
}, - "origin": "Flix",
- "origin_avid": {
- "effects_hash": "14006d7e48660a9f2102f9dac0d4f676:0:24"
}, - "origin_sbp": {
- "project_path": "/Users/flixuser/SBP/myshow/myshow.sboard",
- "sbp_id": "0a332180805eba26",
- "mastercomment2": "SB_BITMAP_P : 0.0000000000;0.0000000000;0.9999956921;0.9999956921;1.0000000000;0.0000000000;FALSE;1920;1080",
- "layer_transform_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "origin_fcpxml": {
- "editorial_id": "myshow_002_0002_v01.png",
- "effect_hash": "yuwTbjW+mcB2yNN99BquXw=="
}, - "keyframes": [
- {
- "show_id": 3,
- "sequence_id": 3,
- "panel_id": 5,
- "panel_revision": 1,
- "start_key": 10,
- "scale": 200,
- "rotation": 180,
- "center_horiz": -0.25,
- "center_vert": 0.33,
- "anchor_point_horiz": -0.4,
- "anchor_point_vert": 0,
- "viewport": {
- "width": 2202,
- "height": 1895,
- "offset_x": 373.951,
- "offset_y": 480.951,
- "scale": 1.3333
}
}
], - "layer_transform": true,
- "duplicate": {
- "sequence_id": 4,
- "panel_id": 1,
- "panel_revision": 4
}, - "related_panels": [
- { }
], - "panel": {
- "id": 5,
- "sequence_id": 60,
- "show_id": 5,
- "created_date": "2019-08-24T14:15:22Z",
- "revision_count": 7,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": null,
- "mask": null
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "deleted": true,
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}
]
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a YAML file describing the state of the show, including all sequences, sequence revisions, and panels.
This endpoint will return a task ID that can be used to poll for the status of the YAML job using the /show/{showId}/chain/{taskID}
endpoint.
showId required | integer Example: 3 ID of the show. |
sequence_ids | Array of integers The IDs of the sequences to export as YAML. If null, all sequences will be exported. |
anonymize_strings | boolean Default: false Indicates whether strings such as dialogue should be replaced with randomized strings. |
include_assets | boolean Default: false Specifies whether to include the names of asset files used by panels in the YAML. |
{- "sequence_ids": [
- 1,
- 6,
- 18
], - "anonymize_strings": true,
- "include_assets": true
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Creates a Storyboard Pro-compatible XML file and returns the contents of the file, along with a list of media objects referenced by the XML that must be downloaded.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
export_path | string The path to where the asset files are located, or will be located, on the user's machine. |
update_dialogue | boolean Whether dialogue should be included in the generated XML. Currently ignored; dialogue will always be included. |
update_action_note | boolean Whether action notes should be included in the generated XML. Currently unused. |
update_camera_move | boolean Whether camera move keyframes should be included in the generated XML. |
update_audio | boolean Whether a path to the sequence revision's audio should be included in the generated XML. Currently ignored; audio will always be included if available. |
update_markers | boolean Whether scene markers should be included in the generated XML. Currently unused. |
{- "export_path": "/home/user/.config/Flix/Export",
- "update_dialogue": true,
- "update_action_note": true,
- "update_camera_move": true,
- "update_audio": true,
- "update_markers": true
}
{- "xml": "string",
- "media_object_info": {
- "property1": {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}, - "property2": {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
}
}
Creates a Storyboard Pro-compatible XML file and returns the contents of the file, along with a list of media objects referenced by the XML that must be downloaded.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
export_path | string The path to where the asset files are located, or will be located, on the user's machine. |
update_dialogue | boolean Whether dialogue should be included in the generated XML. Currently ignored; dialogue will always be included. |
update_action_note | boolean Whether action notes should be included in the generated XML. Currently unused. |
update_camera_move | boolean Whether camera move keyframes should be included in the generated XML. |
update_audio | boolean Whether a path to the sequence revision's audio should be included in the generated XML. Currently ignored; audio will always be included if available. |
update_markers | boolean Whether scene markers should be included in the generated XML. Currently unused. |
{- "export_path": "/home/user/.config/Flix/Export",
- "update_dialogue": true,
- "update_action_note": true,
- "update_camera_move": true,
- "update_audio": true,
- "update_markers": true
}
{- "xml": "string",
- "media_object_info": {
- "property1": {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}, - "property2": {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
}
}
Starts an asynchronous publish of the sequence revision to any of the supported editorial tools; at the time of writing, these are Premiere and Avid.
The publish settings are mostly editor specific, with any Premiere-only fields being ignored if target_editor
is set to avid
, and vice versa.
This endpoint returns a chain ID which can be polled for results using the job chain endpoint.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
comment | string A comment explaining the intent of the publish. |
object Holds the settings for the publish. | |
target_editor required | string Enum: "premiere" "avid" What editor to publish to. |
send_email_on_complete | boolean Default: true Whether to send an email on publish completion. |
{- "comment": "string",
- "publish_settings": {
- "bitrate": "36M",
- "clip_length": 480,
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "new_clip_colour": "grey",
- "export_path": "/home/user/.config/Flix/Publish/assets",
- "flix_timing": true,
- "highlight": true,
- "include_audio": true,
- "marker_type": "clip",
- "mark_in": 120,
- "mark_out": 340,
- "camera_moves_as": "png",
- "sequence_name": "[show_tracking_code]_[sequence_tracking_code]_v[sequence_revision]",
- "use_windows_path": true,
- "color_range": "full"
}, - "target_editor": "premiere",
- "send_email_on_complete": true
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Starts an asynchronous publish of the sequence revision to any of the supported editorial tools; at the time of writing, these are Premiere and Avid.
The publish settings are mostly editor specific, with any Premiere-only fields being ignored if target_editor
is set to avid
, and vice versa.
This endpoint returns a chain ID which can be polled for results using the job chain endpoint.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
comment | string A comment explaining the intent of the publish. |
object Holds the settings for the publish. | |
target_editor required | string Enum: "premiere" "avid" What editor to publish to. |
send_email_on_complete | boolean Default: true Whether to send an email on publish completion. |
{- "comment": "string",
- "publish_settings": {
- "bitrate": "36M",
- "clip_length": 480,
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]",
- "new_clip_colour": "grey",
- "export_path": "/home/user/.config/Flix/Publish/assets",
- "flix_timing": true,
- "highlight": true,
- "include_audio": true,
- "marker_type": "clip",
- "mark_in": 120,
- "mark_out": 340,
- "camera_moves_as": "png",
- "sequence_name": "[show_tracking_code]_[sequence_tracking_code]_v[sequence_revision]",
- "use_windows_path": true,
- "color_range": "full"
}, - "target_editor": "premiere",
- "send_email_on_complete": true
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
The Flix server represents a compound action, such as a publish, with an object known as a job chain. Internally, the job chain contains a list of small jobs with singular responsibilities. From the API, the chain is represented as a UUID. The job chain ID can be used to query the status of a chain.
The status of a completed job chain may contain additional data depending on what jobs were run. For instance, a publish to Premiere will result in a job chain status containing asset IDs that can be used to download the generated files.
Returns the status of a job chain not associated with a show.
This is a legacy endpoint provided for compatibility with job chains created prior to Flix 6.5; any newly created chains should be requested using the /show/{showId}/chain/{taskID}
endpoint.
taskID required | string[a-zA-Z0-9-]+ Example: 00036474-e363-4db8-8f46-e532aac9ef00 Task ID of a server job chain. |
{- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "status": "in progress",
- "start_time": "2019-08-24T14:15:22Z",
- "end_time": "2019-08-24T14:15:22Z",
- "results": { },
- "show_id": 3
}
Returns the status of a job chain which is running, or has previously run, anywhere on the server network.
There can be a short delay, usually sub-second, between a job chain being created—by starting a publish, for example—and its status becoming available. If a 404 occurs unexpectedly, try again after a few seconds.
showId required | integer Example: 3 ID of the show. |
taskID required | string[a-zA-Z0-9-]+ Example: 00036474-e363-4db8-8f46-e532aac9ef00 Task ID of a server job chain. |
{- "task_id": "a8966643-a199-448e-812a-9ae404cfa692",
- "status": "in progress",
- "start_time": "2019-08-24T14:15:22Z",
- "end_time": "2019-08-24T14:15:22Z",
- "results": { },
- "show_id": 3
}
Sends an email summarising a sequence revision using the specified template. This endpoint returns a chain ID which can be polled for results using the job chain endpoint.
showId required | integer Example: 3 ID of the show. |
episodeId required | integer Example: 100 ID of the episode. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
comment | string A description of the revision. |
email_template required | string Enum: "from editorial" "PUBLISH" Specifies what template to use for the email. |
clip_name required | string A formatted string specifying the name of each panel. |
{- "comment": "First draft",
- "email_template": "from editorial",
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Sends an email summarising a sequence revision using the specified template. This endpoint returns a chain ID which can be polled for results using the job chain endpoint.
showId required | integer Example: 3 ID of the show. |
sequenceId required | integer Example: 50 ID of the sequence. |
revisionId required | integer Example: 1 ID of the sequence or panel revision. |
comment | string A description of the revision. |
email_template required | string Enum: "from editorial" "PUBLISH" Specifies what template to use for the email. |
clip_name required | string A formatted string specifying the name of each panel. |
{- "comment": "First draft",
- "email_template": "from editorial",
- "clip_name": "[show_tracking_code]_[sequence_tracking_code]_[panel_id]_v[panel_revision]"
}
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Flix uses websockets to provide real-time updates about jobs. Messages that might be sent via websocket include the progress of job chains or notifications that an AAF file or dialogue file is ready for download.
Note: before the webhook system can be used it must be enabled via the Flix server configuration file. Please see the server options documentation for more details.
A request to this endpoint will be upgraded to a websocket connection. The client ID is an arbitrary identifier
If a valid UUID is not provided to the websocket endpoint using the id
parameter, the websocket connection will be closed with a 4000
close code.
If the server is out of seats and cannot open another connection, the websocket connection will be closed with a 4003
close code.
id required | string Example: id=fd078281-044f-4f29-9ce5-4a26c173f190 ID of the Flix client. |
Websocket messages consist of a single byte indicating the message type, followed by the payload. Websockets currently do not support messages sent from the client to the server other than pings.
Below follows a list of possible message types.
Sent in response to a message from the client.
The server will expect the client message to be a JSON object with a data
field:
data | any The data to return to the client. |
{- "data": "ping"
}
The value of the data
field will be returned to the client, JSON-encoded:
"ping"
Sent when an asset has been updated by a job, generally indicating that a transcode has completed for that asset.
assetID | integer The ID of the asset that was updated. |
status | string A description of how the asset was updated. |
{- "assetID": 10,
- "status": "finished rendering thumbnail"
}
Sent when a job to create a QuickTime file has finished.
assetID | integer The ID of the asset holding the new QuickTime file. |
{- "assetID": 20
}
Sent when a job in a chain has failed, causing the job chain to abort.
taskId | string <uuid> The ID of the job chain that failed. |
percentage | integer The progress of the job chain (always 100 in the case of an error). |
status | string The last status update of the job chain. |
error | string An error message indicating the reason for the failure. |
{- "taskId": "4825f7bf-6b67-47e1-9a49-0e5317b00e7a",
- "percentage": 100,
- "status": "Extracting clips from AAF",
- "error": "Server error, check server logs for more details"
}
Sent when opening a new websocket connection to indicate that the server license is valid and the connection was established successfully.
licensed | boolean Default: true Whether the server license allows for an additional seat; always true if this message is sent. |
{- "licensed": true
}
Indicates that an AAF file was created.
Will be sent once for each AAF file created (i.e. both the new
and all
AAF files).
assetID | integer The ID of the asset holding the new AAF file. |
{- "assetID": 30
}
Sent regularly to provide information about the progress of a job chain.
taskId | string <uuid> The ID of the job chain. |
percentage | integer [ 0 .. 100 ] The progress of the job chain. |
status | string The current status of the job chain. |
{- "taskId": "4825f7bf-6b67-47e1-9a49-0e5317b00e7a",
- "percentage": 80,
- "status": "Creating quicktime"
}
Provides the status of clips being processed during an editorial import.
position | integer >= 0 The index of this panel. |
frameIn | integer The start time of this panel. |
name | string The name of the clip corresponding to this panel. |
ref | boolean Whether this panel is a ref panel. |
status | string Enum: "pending" "inProgress" "complete" "unsupported" "errored" The status of this panel. |
error | string An error message set if the status is |
{- "position": 2,
- "frameIn": 48,
- "name": "show_9998_0038_v01",
- "ref": false,
- "status": "pending",
- "error": ""
}
Sent when an editorial import has completed, providing the revision number of the newly created sequence revision.
sequence_revision | integer The revision number of the newly created sequence revision. |
{- "sequence_revision": 6
}
Sent when a Storyboard Pro import has completed. The payload includes a list of assets to which artwork, and possibly source media, should be uploaded.
sequence_revision | integer The new sequence revision created by the import. |
object A map from Storyboard Pro panel IDs to asset information. |
{- "sequence_revision": 4,
- "missing_assets": {
- "0a65b6ce7c84c2a5": {
- "asset_id": 2001,
- "artwork": 19203,
- "source_media": 19204
}, - "0a65b6ce7c84fb91": {
- "asset_id": 2005,
- "artwork": 19210
}
}
}
Indicates that an FCPXML file (e.g. for Premiere) was created.
Will be sent once for each FCPXML file created (i.e. both the new
and all
AAF files).
assetID | integer The ID of the asset holding the new FCPXML file. |
{- "assetID": 32
}
Sent when a dialogue file has been created.
taskId | string <uuid> The ID of the job chain. |
assetID | integer The ID of the asset holding the new dialogue file. |
{- "taskId": "4825f7bf-6b67-47e1-9a49-0e5317b00e7a",
- "assetID": 51
}
Sent to provide information about an asset while a transcode job is running.
assetID | integer The ID of the updated asset. |
status | string A description of how the asset has been updated. |
{- "assetID": 101,
- "status": "copying generated file to asset directory"
}
Indicates that an error occurred when attempting to generate thumbnails for an asset.
assetID | integer The ID of the asset for which the transcode failed. |
status | string The status of the transcode. |
{- "assetID": 101,
- "status": "failed to create thumbnail"
}
Sent when a job to create a contact sheet PDF file has finished.
assetID | integer The ID of the asset holding the new contact sheet PDF file. |
{- "assetID": 42
}
Sent when a job to create a state YAML file has finished.
assetID | integer The ID of the asset holding the new state YAML file. |
{- "assetID": 39
}
Provides a log message to the client during a Storyboard Pro import.
status | string A log message describing the status of the import. |
level | integer The level of the log message. Uses logrus levels (0: panic, 1: fatal, 2: error, 3: warning, 4: info, 5: debug, 6: trace). |
{- "status": "error processing audio clip; audio will be skipped",
- "level": 3
}
Sent when a new third-party extension has been added to the Server and is available for the Client to download and install.
id | integer The Flix set ID. |
name | string The name of the extension |
version | string The semantic version of the extension |
client_uid | string The unique ID for the extension. This should remain the same for multiple versions of a plugin. |
Array of objects (ExtensionApplication) The list of applications this plugin supports | |
type | string Enum: "Sketch" "Editorial" "3D" "Standalone" "Script" The type of extension. |
flix_api_versions | Array of strings The minimum versions of client API required to run the extension. |
object (Asset) The structure which we use for storing data for Flix assets. | |
documentation_link | string An optional URL to supporting documentation for the extension. |
{- "id": 102,
- "name": "Photoshop Plugin",
- "version": "1.0.0",
- "client_uid": "c9edda37-2672-4cab-9b83-ede3afcf05f5",
- "applications": [
- {
- "name": "Adobe Photoshop",
- "versions": [
- "2022"
]
}
], - "type": "Sketch",
- "flix_api_versions": [
- "1.0.0"
], - "asset": {
- "asset_id": 55,
- "show_id": 3,
- "created_date": "2019-08-24T14:15:22Z",
- "owner_id": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- {
- "name": "flix::/shows",
- "mask": 35
}
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "media_objects": {
- "property1": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
], - "property2": [
- {
- "id": 3333,
- "asset_id": 400,
- "name": "opening.psd",
- "content_type": "image/vnd.adobe.photoshop",
- "content_length": 8506541,
- "content_hashes": [
- {
- "value": "ceb8957102a03523fd66f39abe94cf32",
- "source_type": "file.md5",
- "data": "string"
}
], - "created_date": "2019-08-24T14:15:22Z",
- "status": 1,
- "owner": {
- "created_date": "2019-08-24T14:15:22Z",
- "deleted": true,
- "email": "user@example.com",
- "groups": [
- {
- "group": {
- "id": 1,
- "title": "default"
}, - "role": {
- "id": 2,
- "name": "Regular user",
- "permissions": [
- null
]
}
}
], - "id": 50,
- "is_admin": true,
- "is_system": true,
- "is_third_party": true,
- "password": "hunter2",
- "type": "flix",
- "username": "flixuser",
- "metadata": [
- {
- "name": "maya://pluginv1/scene name",
- "value": true,
- "value_type": "bool",
- "created_date": "2019-08-24T14:15:22Z",
- "modified_date": "2019-08-24T14:15:22Z"
}
]
}, - "asset_type": "artwork",
- "dimensions": {
- "Min": {
- "X": 0,
- "Y": 0
}, - "Max": {
- "X": 0,
- "Y": 0
}
}
}
]
}
}, - "documentation_link": "string"
}