Download OpenAPI specification:Download
Use your Mediagraph account via API with either a Personal Access Token or OAuth Access Token.
All endpoints using Personal Access Tokens (besides User specifics) require the OrganizationId header, which can be found in "Profile Settings" when logged into the Organization.
curl -u :YOUR_ACCESS_TOKEN \
-H "OrganizationId: 100" \
"https://api.mediagraph.io/api/assets/search?q=sunset"
OAuth Access Tokens use the Authorization header and are implicitly associated with the authorized Organization.
curl -H "Authorization: Bearer YOUR_OAUTH_TOKEN" \
"https://api.mediagraph.io/api/assets/search?q=sunset"
| Step | Method | URL |
|---|---|---|
| Authorize | GET or POST |
https://mediagraph.io/oauth/authorize?response_type=code&client_id=...&redirect_uri=...&state=... |
| Get Refresh Token | POST |
https://mediagraph.io/oauth/token?grant_type=authorization_code&token=... |
| Revoke Token | POST |
https://mediagraph.io/oauth/revoke?token=... |
List endpoints return paginated results with sorting support:
| Parameter | Default | Description |
|---|---|---|
page |
1 | Page number |
per_page |
10 | Items per page |
sortField |
varies | Column to sort by (see each endpoint for supported values) |
sortOrder |
descend |
Sort direction: ascend or descend |
The total number of records is returned in the Total-Entries response header.
curl -u :YOUR_ACCESS_TOKEN \
-H "OrganizationId: 100" \
"https://api.mediagraph.io/api/creator_tags?page=2&per_page=25&sortField=name&sortOrder=ascend"
Access Requests allow users to request access to assets. Grants are a special type of access request where an admin grants access to external users. The workflow supports pending, submitted, and finalized states.
Returns a paginated list of access requests for the organization.
| q | string Search by name, email, or user |
| type | string Enum: "grant" "request" Filter by type |
| aasm_state | string Enum: "pending" "submitted" "finalized" Filter by state |
| submitted | string Filter submitted requests (use 'all' for all states) |
| sortField | string Enum: "aasm_state" "submitted_at" "created_at" "request_deadline" "requested_assets_count" "granted_assets_count" "agreed_at" Sort field |
| total-entries | integer |
| id | string Access Request ID |
| name | string Request name |
| aasm_state | string Current state |
| is_grant | string Whether this is a grant |
| requester_name | string Requester name |
| requester_email | string Requester email |
| submitted_at | string Submission timestamp |
| finalized_at | string Finalization timestamp |
| assets_count | string Number of assets |
[- {
- "id": 1073064897,
- "name": "Calcium",
- "sub_type": "access_request",
- "path_names": [
- "Calcium"
], - "path_slugs": [
- "calcium"
], - "description": null,
- "created_at": "2026-05-28T19:49:30.374Z",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "organizer": false,
- "type": "Lightbox",
- "has_workflow_steps": false,
- "enable_contribution": false,
- "visible_assets_count": null,
- "asset_group_id": 1073064897,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073064897,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073064897,
- "view_settings": null,
- "access_request_id": 926561740,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819228,
- "first_name": "Stephen",
- "last_name": "Dare",
- "created_at": "2026-05-28T19:49:21.897Z",
- "default_username": "celena_paucek",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Stephen Dare",
- "initials": "S D",
- "username": null,
- "title": null,
- "user_id": 1015819228,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073064897-calcium",
- "can_manage": true,
- "can_edit": true,
- "editable": true,
- "role": "viewer",
- "owner": true,
- "can_update_assets": true
}
]Create a new access request or grant. For grants, set is_grant: true and provide requester details.
object |
| id | string Created Access Request ID |
| code | string Unique access code |
{- "access_request": {
- "name": "string",
- "description": "string",
- "is_grant": true,
- "requester_name": "string",
- "requester_email": "string",
- "request_deadline": null,
- "valid_through": null,
- "requested_image_and_video_permission": "view",
- "requested_other_permission": "view",
- "asset_ids": [
- 0
], - "media_usage_type_ids": [
- 0
]
}
}{- "id": 926561747,
- "user_id": 1015819300,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "New Request",
- "description": null,
- "submitted_at": null,
- "finalized_at": null,
- "finalized_by_id": null,
- "request_deadline": null,
- "valid_through": null,
- "revoked_at": null,
- "revoked_by_id": null,
- "requester_email": null,
- "requester_name": null,
- "request_lightbox_id": 1073065114,
- "grant_lightbox_id": null,
- "created_at": "2026-05-28T19:50:10.145Z",
- "updated_at": "2026-05-28T19:50:10.179Z",
- "requested_assets_count": 1,
- "granted_assets_count": 0,
- "note": null,
- "modified_description": null,
- "requested_image_and_video_permission": "original",
- "requested_other_permission": "download",
- "granted_image_and_video_permission": null,
- "granted_other_permission": null,
- "to_destroy": null,
- "is_grant": false,
- "agreed_at": null,
- "code": "18d87f8a3e5584c083890def094305a3",
- "user": {
- "id": 1015819300,
- "first_name": "Gale",
- "last_name": "Jenkins",
- "created_at": "2026-05-28T19:50:04.136Z",
- "default_username": "william",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gale Jenkins",
- "initials": "G J",
- "username": null,
- "title": null,
- "user_id": 1015819300,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "926561747-new-request",
- "managable": true,
- "finalized_by": null
}Returns a tree view of access requests grouped by state (pending, submitted, finalized).
| parent_id | string Enum: "pending" "submitted" "finalized" State to filter by |
[- {
- "id": "pending",
- "slug": "pending",
- "name": "Pending",
- "organizer": true,
- "has_children": true,
- "children_count": 1
}, - {
- "id": "submitted",
- "slug": "submitted",
- "name": "Submitted",
- "organizer": true,
- "has_children": false,
- "children_count": 0
}, - {
- "id": "finalized",
- "slug": "finalized",
- "name": "Finalized",
- "organizer": true,
- "has_children": 0,
- "children_count": 0
}
]Get details of a specific access request.
| id required | integer |
| id | string Access Request ID |
| name | string Request name |
| description | string Request description |
| aasm_state | string Current state |
| is_grant | string Whether this is a grant |
| requester_name | string Requester name (for grants) |
| requester_email | string Requester email (for grants) |
| request_deadline | string Request deadline |
| valid_through | string Access valid through date |
| requested_image_and_video_permission | string Requested permission level for images/videos |
| requested_other_permission | string Requested permission level for other files |
| granted_image_and_video_permission | string Granted permission level for images/videos |
| granted_other_permission | string Granted permission level for other files |
| code | string Unique access code |
{- "id": 926561744,
- "user_id": 1015819276,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Berkelium",
- "description": null,
- "submitted_at": null,
- "finalized_at": null,
- "finalized_by_id": null,
- "request_deadline": null,
- "valid_through": null,
- "revoked_at": null,
- "revoked_by_id": null,
- "requester_email": null,
- "requester_name": null,
- "request_lightbox_id": 1073065041,
- "grant_lightbox_id": null,
- "created_at": "2026-05-28T19:49:57.288Z",
- "updated_at": "2026-05-28T19:49:57.310Z",
- "requested_assets_count": 1,
- "granted_assets_count": 0,
- "note": null,
- "modified_description": null,
- "requested_image_and_video_permission": "original",
- "requested_other_permission": "original",
- "granted_image_and_video_permission": null,
- "granted_other_permission": null,
- "to_destroy": null,
- "is_grant": false,
- "agreed_at": null,
- "code": "fa69edda1c6c099a4882c01770c15abb",
- "user": {
- "id": 1015819276,
- "first_name": "Jame",
- "last_name": "Keeling",
- "created_at": "2026-05-28T19:49:51.365Z",
- "default_username": "tyreefarrell",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jame Keeling",
- "initials": "J K",
- "username": null,
- "title": null,
- "user_id": 1015819276,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "926561744-berkelium",
- "managable": true,
- "finalized_by": null
}Update an access request. Different fields are editable depending on state.
| id required | integer |
object |
{- "access_request": {
- "name": "string",
- "description": "string",
- "valid_through": null,
- "note": "string",
- "granted_image_and_video_permission": "string",
- "granted_other_permission": "string"
}
}{- "organization_id": 1071574457,
- "id": 926561748,
- "user_id": 1015819312,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Updated Request Name",
- "description": null,
- "submitted_at": null,
- "finalized_at": null,
- "finalized_by_id": null,
- "request_deadline": null,
- "valid_through": null,
- "revoked_at": null,
- "revoked_by_id": null,
- "requester_email": null,
- "requester_name": null,
- "request_lightbox_id": 1073065150,
- "grant_lightbox_id": null,
- "created_at": "2026-05-28T19:50:16.598Z",
- "updated_at": "2026-05-28T19:50:17.068Z",
- "email": null,
- "code": "ef7e4206c1a4f53e74816f797e06bfec",
- "modified_description": null,
- "note": null,
- "requested_image_and_video_permission": "original",
- "requested_other_permission": "original",
- "granted_image_and_video_permission": null,
- "granted_other_permission": null,
- "parent_access_request_id": null,
- "is_grant": false,
- "agreed_at": null
}Find an access request by ID or code. Public users can only find finalized requests by code.
| id required | string Access request ID or code |
{- "access_request": {
- "id": 926561745,
- "user_id": 1015819288,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Silicon",
- "description": null,
- "submitted_at": null,
- "finalized_at": null,
- "finalized_by_id": null,
- "request_deadline": null,
- "valid_through": null,
- "revoked_at": null,
- "revoked_by_id": null,
- "requester_email": null,
- "requester_name": null,
- "request_lightbox_id": 1073065077,
- "grant_lightbox_id": null,
- "created_at": "2026-05-28T19:50:03.666Z",
- "updated_at": "2026-05-28T19:50:03.689Z",
- "requested_assets_count": 1,
- "granted_assets_count": 0,
- "note": null,
- "modified_description": null,
- "requested_image_and_video_permission": "original",
- "requested_other_permission": "original",
- "granted_image_and_video_permission": null,
- "granted_other_permission": null,
- "to_destroy": null,
- "is_grant": false,
- "agreed_at": null,
- "code": "87c76ee40b727c9f716d27b970564307",
- "user": {
- "id": 1015819288,
- "first_name": "Jefferson",
- "last_name": "McLaughlin",
- "created_at": "2026-05-28T19:49:57.697Z",
- "default_username": "marcellus",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jefferson McLaughlin",
- "initials": "J M",
- "username": null,
- "title": null,
- "user_id": 1015819288,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "926561745-silicon",
- "managable": true,
- "finalized_by": null,
- "custom_meta_values": [ ]
}, - "asset_group": {
- "id": 1073065077,
- "name": "Silicon",
- "sub_type": "access_request",
- "path_names": [
- "Silicon"
], - "path_slugs": [
- "silicon"
], - "description": null,
- "created_at": "2026-05-28T19:50:03.670Z",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "organizer": false,
- "type": "Lightbox",
- "has_workflow_steps": false,
- "enable_contribution": false,
- "visible_assets_count": null,
- "asset_group_id": 1073065077,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073065077,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073065077,
- "view_settings": null,
- "access_request_id": 926561745,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819288,
- "first_name": "Jefferson",
- "last_name": "McLaughlin",
- "created_at": "2026-05-28T19:49:57.697Z",
- "default_username": "marcellus",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jefferson McLaughlin",
- "initials": "J M",
- "username": null,
- "title": null,
- "user_id": 1015819288,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073065077-silicon",
- "can_manage": true,
- "can_edit": true,
- "editable": true,
- "role": "viewer",
- "owner": true,
- "can_update_assets": true
}, - "editable": true,
- "managable": true
}Submit a pending access request for review.
| id required | integer |
{- "id": 926561749,
- "user_id": 1015819324,
- "workflow_id": 1014085959,
- "aasm_state": "submitted",
- "name": "Flerovium",
- "description": null,
- "submitted_at": "2026-05-28T19:50:23.126Z",
- "finalized_at": null,
- "finalized_by_id": null,
- "request_deadline": null,
- "valid_through": null,
- "revoked_at": null,
- "revoked_by_id": null,
- "requester_email": null,
- "requester_name": null,
- "request_lightbox_id": 1073065186,
- "grant_lightbox_id": null,
- "created_at": "2026-05-28T19:50:22.709Z",
- "updated_at": "2026-05-28T19:50:23.149Z",
- "requested_assets_count": 1,
- "granted_assets_count": 0,
- "note": null,
- "modified_description": null,
- "requested_image_and_video_permission": "original",
- "requested_other_permission": "original",
- "granted_image_and_video_permission": "original",
- "granted_other_permission": "original",
- "to_destroy": null,
- "is_grant": false,
- "agreed_at": null,
- "code": "1ed73f49b44299626099976de5c52058",
- "user": {
- "id": 1015819324,
- "first_name": "Kiara",
- "last_name": "Moore",
- "created_at": "2026-05-28T19:50:17.082Z",
- "default_username": "gretaveum",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kiara Moore",
- "initials": "K M",
- "username": null,
- "title": null,
- "user_id": 1015819324,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "926561749-flerovium",
- "managable": true,
- "finalized_by": null
}Get versions for an Asset.
| asset_id | integer Example: asset_id=1060943027 Asset ID |
| include_renditions | boolean Example: include_renditions=true Include list of downloadable sizes and formats |
[- {
- "id": 1061584914,
- "asset_id": 1060943027,
- "user_id": 1015819357,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "vel.png",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "png",
- "created_via": null,
- "previews_generated_at": null,
- "thumbs_count": null,
- "created_at": "2026-05-28T19:50:36.752Z",
- "updated_at": "2026-05-28T19:50:36.752Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 1015819357,
- "first_name": "Kasie",
- "last_name": "Murazik",
- "created_at": "2026-05-28T19:50:34.564Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:50:34.563Z",
- "default_username": "hollis",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Kasie Murazik",
- "initials": "K M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015819357
}, - "grid_url": null,
- "type": "Image",
- "mime_type": "image/png",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "inspiration_patience11",
- "full_url": null,
- "renditions": [
- {
- "name": "original",
- "ext": "png"
}
]
}, - {
- "id": 1061584913,
- "asset_id": 1060943027,
- "user_id": 1015819357,
- "number": 1,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "velit.jpg",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "jpg",
- "created_via": null,
- "previews_generated_at": "2026-05-28T19:50:36.370Z",
- "thumbs_count": null,
- "created_at": "2026-05-28T19:50:36.192Z",
- "updated_at": "2026-05-28T19:50:36.371Z",
- "is_head": false,
- "aasm_state": "processed",
- "user": {
- "id": 1015819357,
- "first_name": "Kasie",
- "last_name": "Murazik",
- "created_at": "2026-05-28T19:50:34.564Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:50:34.563Z",
- "default_username": "hollis",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Kasie Murazik",
- "initials": "K M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015819357
}, - "type": "Image",
- "mime_type": "image/jpeg",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "inspiration_patience11",
- "renditions": [
- {
- "name": "original",
- "ext": "jpg"
}, - {
- "name": "full",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "permalink",
- "display_name": "medium",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "small",
- "ext": "jpg",
- "watermarked": false
}
]
}
]Get version details for Asset using the Version number.
| asset_id | integer Example: asset_id=1060943028 Asset ID |
| number | integer Example: number=2 Asset Data Version Number |
{- "id": 1061584916,
- "asset_id": 1060943028,
- "user_id": 1015819370,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "odit.ods",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "ods",
- "created_via": null,
- "previews_generated_at": null,
- "thumbs_count": null,
- "created_at": "2026-05-28T19:50:43.283Z",
- "updated_at": "2026-05-28T19:50:43.283Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 1015819370,
- "first_name": "Chas",
- "last_name": "Ziemann",
- "created_at": "2026-05-28T19:50:41.252Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:50:41.251Z",
- "default_username": "treva",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Chas Ziemann",
- "initials": "C Z",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015819370
}, - "grid_url": null,
- "type": "Document",
- "mime_type": "application/vnd.oasis.opendocument.spreadsheet",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "message-galaxy12",
- "full_url": null
}Searches all Assets you have access to in the Organization. POST is also supported for long lists e.g. Asset IDs.
| q | string Query text |
| taxonomy_filter_mode | string Enum: "union" "intersection" Taxonomy Filter Mode |
| gps | boolean Filter Assets containing GPS coordinates. |
| bounds | string Example: bounds=36.49097449773101,-106.41286192187499,31.258707788122383,-120.37648496874999 Bounding box with format: ne_lat,ne_lon,sw_lat,sw_lon |
| include_totals | boolean Include aggregate counts (aggs) in results |
| as_filters | boolean Aggregate counts will be formatted as Filters |
| include_renditions | boolean Include list of downloadable sizes and formats |
| include_meta | boolean Include all IPTC, EXIF, and XMP metadata (exiftool compatible) |
| ids | Array of integers Array of Asset IDs to include. |
| guids | Array of strings Array of Asset GUIDs to include. |
| upload_id | integer Upload |
| upload_guid | string The GUID for the Upload session |
| storage_folder_id | integer Storage folder |
| omit_child_storage_folders | boolean Omit assets belonging to sub-level Storage Folders (top-level only) |
| collection_id | integer Collection |
| omit_child_collections | boolean Omit assets belonging to sub-level Collections (top-level only) |
| lightbox_id | integer Lightbox |
| omit_child_lightboxes | boolean Omit assets belonging to sub-level Lightboxes (top-level only) |
| lightbox_folder_id | integer The ID of a Folder ("Bin") within a Lightbox. |
| omit_child_lightbox_folders | boolean Omit assets belonging to sub-level Lightboxe Folders (top-level only) |
| taxonomy | boolean Taxonomy |
| hide_taxonomy | boolean Hide taxonomy |
| tags | Array of strings Tags |
| hide_tags | Array of strings Hide tags |
| exts | Array of strings Exts |
| has_people | string Enum: "yes" "no" "untagged" Has people |
| has_alt_text | string Enum: "yes" "no" Has alt text |
| file_size_range | string Enum: "<1" "1-10" "10-50" "50-100" ">100" File size range |
| captured_at | Array of strings Example: captured_at=2021-06-11T21:35:49-07:00,2021-06-25T23:59:59-07:00 Captured At Range |
| missing_captured_at | boolean Captured At Missing |
| created_at | Array of strings Example: created_at=2021-06-11T21:35:49-07:00,2021-06-25T23:59:59-07:00 Created At Range |
| updated_at | Array of strings Example: updated_at=2021-06-11T21:35:49-07:00,2021-06-25T23:59:59-07:00 Last Update Range |
| snapshot_timestamp | integer Example: snapshot_timestamp=1625198149000 Timestamp (in milliseconds) to filter assets created before this time, used for consistent pagination |
| aspect | string Enum: "square" "portrait" "landscape" "panorama" Aspect Ratio |
| proximity_field | string Enum: "transcript" "description" "content" Proximity field |
| proximity_word_1 | string Proximity word 1 |
| proximity_word_2 | string Proximity word 2 |
| proximity_max_gaps | integer Proximity max gaps |
| rating | Array of integers[ items [ 0 .. 5 ] ] Rating range 0-5 (e.g. 'rating[]=3&rating[]=5'), or single value (e.g. 'rating=5') |
| rights | Array of integers Array of Rights Package IDs (or 'missing') |
| rights_code | Array of strings Array of Rights Codes |
| user_ids | Array of integers User ids |
| creator_tag_id | Array of integers Creator tag |
| contracts | boolean Contracts |
| releases | boolean Releases |
| expired | boolean Expired |
| submitted | boolean Submitted |
| contract_asset_id | Array of integers Contract asset |
| release_ids | Array of integers Release ids |
| custom_meta | object Search Custom Meta Values by name, using an array for controlled vocabulary values, e.g. |
| no_collections | boolean No collections |
| contribution_id | integer View all Assets from a Contribution Request |
| my_contribution_id | integer View my Assets from a Contribution Request |
| upload_type | string Enum: "all" "group" "link" "lightbox" Upload type |
| view_all | string Enum: "Collection" "Lightbox" View all |
| optimization_request | string Enum: "none" "requested" "completed" Optimization Requests |
| vote | integer [ -1 .. 1 ] Vote (Like / Dislike) |
| sort | string Enum: "filename" "created_at" "captured_at" "file_size" "rating" "custom" Sort field |
| order | string Enum: "asc" "desc" Sort direction (default: desc) |
| sync | boolean Sets |
| aasm_state | string Enum: "pending" "uploaded" "processing" "processed" "processing_error" Search by Asset processing state (must have Manage Asset permissions). Defaults to |
| all_ids | boolean Return all Asset IDs in search results, un-paginated. |
| total-entries | integer |
{- "total_entries": 3,
- "total_display": null,
- "ids_in_selection": null,
- "filters": {
- "aspect": {
- "buckets": [
- {
- "key": "portrait",
- "from": 0,
- "to": 0.99,
- "doc_count": 0
}, - {
- "key": "square",
- "from": 0.999,
- "to": 1.001,
- "doc_count": 0
}, - {
- "key": "landscape",
- "from": 1.01,
- "to": 1.99,
- "doc_count": 0
}, - {
- "key": "panorama",
- "from": 2,
- "doc_count": 0
}
]
}, - "rating": {
- "doc_count_error_upper_bound": 0,
- "sum_other_doc_count": 0,
- "buckets": [
- {
- "key": 0,
- "doc_count": 3
}
]
}, - "visible_tag_names": {
- "doc_count_error_upper_bound": 0,
- "sum_other_doc_count": 0,
- "buckets": [ ],
- "display": "keywords"
}, - "created_at": {
- "buckets": [
- {
- "key": "Last Year",
- "from": 1735689600000,
- "from_as_string": "2025-01-01T00:00:00.000Z",
- "to": 1767225600000,
- "to_as_string": "2026-01-01T00:00:00.000Z",
- "doc_count": 0
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Last 30 Days",
- "from": 1777334400000,
- "from_as_string": "2026-04-28T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1778716800000,
- "from_as_string": "2026-05-14T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1779926400000,
- "from_as_string": "2026-05-28T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}
], - "display": "upload date",
- "captured_at": "capture date"
}, - "captured_at": {
- "buckets": [
- {
- "key": "Last Year",
- "from": 1735689600000,
- "from_as_string": "2025-01-01T00:00:00.000Z",
- "to": 1767225600000,
- "to_as_string": "2026-01-01T00:00:00.000Z",
- "doc_count": 0
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Last 30 Days",
- "from": 1777334400000,
- "from_as_string": "2026-04-28T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1778716800000,
- "from_as_string": "2026-05-14T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1779926400000,
- "from_as_string": "2026-05-28T00:00:00.000Z",
- "to": 1779997855543,
- "to_as_string": "2026-05-28T19:50:55.543Z",
- "doc_count": 0
}
]
}, - "rights_code": {
- "display": "rights status",
- "buckets": [
- {
- "key": "owned",
- "key_as_string": "Owned by Organization",
- "doc_count": 1
}, - {
- "key": "some",
- "key_as_string": "Limited Use",
- "doc_count": 1
}
]
}, - "custom_meta": [
- {
- "display": "Custom Meta Field 37",
- "multi": false,
- "buckets": [ ]
}, - {
- "display": "Custom Meta Field 39",
- "multi": true,
- "buckets": [ ]
}, - {
- "display": "Custom Meta Field 40",
- "multi": true,
- "buckets": [
- {
- "key": "French Fries with Sausages 27",
- "doc_count": 1
}
]
}
], - "has_people": {
- "buckets": [
- {
- "key": "yes",
- "doc_count": 1
}, - {
- "key": "no",
- "doc_count": 1
}, - {
- "key": "untagged",
- "doc_count": 1
}
]
}, - "optimization_request": {
- "buckets": [
- {
- "key": "requested",
- "doc_count": 0
}, - {
- "key": "completed",
- "doc_count": 0
}
]
}, - "vote": {
- "display": "likes",
- "buckets": [
- {
- "key": 1,
- "doc_count": 0,
- "key_as_string": "likes"
}, - {
- "key": -1,
- "doc_count": 1,
- "key_as_string": "dislikes"
}
]
}, - "rights_package_id": {
- "buckets": [
- {
- "key": 957290103,
- "key_as_string": "Owned by Organization",
- "doc_count": 1,
- "parent": "Owned by Organization"
}, - {
- "key": 957290105,
- "key_as_string": "Limited Use",
- "doc_count": 1,
- "parent": "Limited Use"
}
], - "display": "rights package"
}, - "user_id": {
- "buckets": [
], - "display": "uploaded by"
}
}, - "all_asset_counts": {
- "Collection": 0,
- "NoCollection": 3,
- "Lightbox": 0
}, - "assets": [
- {
- "id": 1060943031,
- "filename": "doloremque.jpg",
- "file_size": null,
- "guid": "9c6bf34a-7d48-4313-92ec-9a0559a18853",
- "short_guid": "9c6bf34a",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574462,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": null,
- "editable": true,
- "manageable": true,
- "rights_editable": null,
- "rights_manageable": null,
- "taggable": true,
- "description_editable": null,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046097,
- "user_id": 1015819391,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:50:53.704Z",
- "updated_at": "2026-05-28T19:50:54.321Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574462/98ee487c/9c6bf34a-7d48-4313-92ec-9a0559a18853-doloremque.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:50:53.702Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290105,
- "submitted_at": "2026-05-28T07:50:53.702Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [
- {
- "id": 944088751,
- "text": "French Fries with Sausages 27",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879201439
}
], - "user": {
- "id": 1015819391,
- "first_name": "Jina",
- "last_name": "Leuschke",
- "created_at": "2026-05-28T19:50:52.044Z",
- "default_username": "josue",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jina Leuschke",
- "initials": "J L",
- "username": null,
- "title": null,
- "user_id": 1015819391,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "some",
- "rights_status_name": "Limited Use",
- "rights_status_description": "Org has some rights to the object as spelled out in a rights agreement",
- "creator_tag": null,
- "storage_folder_path": "cruelty-satisfaction15",
- "tags": [ ],
- "renditions": [
- {
- "name": "original",
- "ext": "jpg"
}, - {
- "name": "full",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "permalink",
- "display_name": "medium",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "small",
- "ext": "jpg",
- "watermarked": false
}
], - "meta": {
- "xmp": {
- "documentId": "9c6bf34a-7d48-4313-92ec-9a0559a18853",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061584919,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "exif": {
- "width": null,
- "height": null,
- "dateTimeOriginal": null,
- "cameraModel": null,
- "orientation": null,
- "exposureTime": null,
- "apertureValue": null,
- "isoSpeedRatings": null,
- "colorSpace": null,
- "resolution": null
}, - "iptc": {
- "copyrightNotice": null,
- "caption": null,
- "instructions": null,
- "captionWriter": null,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "custom": {
- "Custom Meta Field 40": [
- "French Fries with Sausages 27"
]
}, - "others": { }
},
}, - {
- "id": 1060943030,
- "filename": "quidem.txt",
- "file_size": null,
- "guid": "ad2b44b2-4dfb-46bd-a7a3-ca2413f8640c",
- "short_guid": "ad2b44b2",
- "type": "Text",
- "ext": "txt",
- "duration": null,
- "md5": null,
- "mime_type": "text/plain",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": false,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:50:54.221Z",
- "updated_at": "2026-05-28T19:50:54.221Z",
- "value": -1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Text",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574462,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": null,
- "editable": true,
- "manageable": true,
- "rights_editable": null,
- "rights_manageable": null,
- "taggable": true,
- "description_editable": null,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046096,
- "user_id": 1015819387,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:50:51.529Z",
- "updated_at": "2026-05-28T19:50:54.400Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574462/31c9a653/ad2b44b2-4dfb-46bd-a7a3-ca2413f8640c-quidem.txt",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:50:51.526Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": null,
- "submitted_at": "2026-05-28T07:50:51.526Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819387,
- "first_name": "Hettie",
- "last_name": "Lockman",
- "created_at": "2026-05-28T19:50:49.937Z",
- "default_username": "elda",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Hettie Lockman",
- "initials": "H L",
- "username": null,
- "title": null,
- "user_id": 1015819387,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "creator_tag": null,
- "storage_folder_path": "design_agree14",
- "tags": [ ],
- "renditions": [
- {
- "name": "original",
- "ext": "txt"
}, - {
- "name": "full",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "permalink",
- "display_name": "medium",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "small",
- "ext": "jpg",
- "watermarked": false
}
], - "meta": {
- "xmp": {
- "documentId": "ad2b44b2-4dfb-46bd-a7a3-ca2413f8640c",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061584918,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "exif": {
- "width": null,
- "height": null,
- "dateTimeOriginal": null,
- "cameraModel": null,
- "orientation": null,
- "exposureTime": null,
- "apertureValue": null,
- "isoSpeedRatings": null,
- "colorSpace": null,
- "resolution": null
}, - "iptc": {
- "copyrightNotice": null,
- "caption": null,
- "instructions": null,
- "captionWriter": null,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "custom": { },
- "others": { }
},
}, - {
- "id": 1060943029,
- "filename": "laboriosam.jpg",
- "file_size": null,
- "guid": "12a7244b-9964-451e-8bc7-6e633d657b24",
- "short_guid": "12a7244b",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:50:54.217Z",
- "updated_at": "2026-05-28T19:50:54.217Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574462,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": null,
- "editable": true,
- "manageable": true,
- "rights_editable": null,
- "rights_manageable": null,
- "taggable": true,
- "description_editable": null,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046095,
- "user_id": 1015819383,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:50:49.427Z",
- "updated_at": "2026-05-28T19:50:49.518Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574462/22312e07/12a7244b-9964-451e-8bc7-6e633d657b24-laboriosam.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:50:49.424Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290103,
- "submitted_at": "2026-05-28T07:50:49.424Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819383,
- "first_name": "Frank",
- "last_name": "Bartell",
- "created_at": "2026-05-28T19:50:47.788Z",
- "default_username": "dean",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Frank Bartell",
- "initials": "F B",
- "username": null,
- "title": null,
- "user_id": 1015819383,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "cutting-hypothesis13",
- "tags": [ ],
- "renditions": [
- {
- "name": "original",
- "ext": "jpg"
}, - {
- "name": "full",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "permalink",
- "display_name": "medium",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "small",
- "ext": "jpg",
- "watermarked": false
}
], - "meta": {
- "xmp": {
- "documentId": "12a7244b-9964-451e-8bc7-6e633d657b24",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061584917,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "exif": {
- "width": null,
- "height": null,
- "dateTimeOriginal": null,
- "cameraModel": null,
- "orientation": null,
- "exposureTime": null,
- "apertureValue": null,
- "isoSpeedRatings": null,
- "colorSpace": null,
- "resolution": null
}, - "iptc": {
- "copyrightNotice": null,
- "caption": null,
- "instructions": null,
- "captionWriter": null,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "custom": { },
- "others": { }
},
}
]
}Get the asset details. ID can also be the Asset GUID.
| id required | integer |
| sync | boolean Sets |
| include_renditions | boolean Default: false Include renditions |
| source_url | string Source URL for Web Page assets (a PDF is generated from this URL) |
{- "id": 1060943047,
- "filename": "doloribus.jpg",
- "file_size": null,
- "guid": "1cbc989a-496a-45b7-b891-4851fb7a14cb",
- "short_guid": "1cbc989a",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:52:03.590Z",
- "updated_at": "2026-05-28T19:52:03.590Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574467,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046113,
- "user_id": 1015819506,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:51:58.371Z",
- "updated_at": "2026-05-28T19:51:58.477Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574467/f9928a6f/1cbc989a-496a-45b7-b891-4851fb7a14cb-doloribus.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:51:58.369Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290143,
- "submitted_at": "2026-05-28T07:51:58.369Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-05-28T19:52:03.624Z",
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819506,
- "first_name": "Carrol",
- "last_name": "Lueilwitz",
- "created_at": "2026-05-28T19:51:56.696Z",
- "default_username": "dollie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carrol Lueilwitz",
- "initials": "C L",
- "username": null,
- "title": null,
- "user_id": 1015819506,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "confuse_ample33",
- "tags": [ ],
- "renditions": [
- {
- "name": "original",
- "ext": "jpg"
}, - {
- "name": "full",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "permalink",
- "display_name": "medium",
- "ext": "jpg",
- "watermarked": false
}, - {
- "name": "small",
- "ext": "jpg",
- "watermarked": false
}
], - "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 1,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073065692,
- "created_at": "2026-05-28T19:51:58.353Z",
- "name": "Monet33",
- "description": "Reprehenderit nesciunt ea. Eligendi exercitationem sapiente. Consequatur officiis earum.",
- "slug": "confuse_ample33",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Monet33"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "confuse_ample33"
], - "asset_group_id": 1073065692,
- "has_workflow_steps": false,
- "contribution_id": 1025833660,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819509,
- "first_name": "Kristofer",
- "last_name": "Kuvalis",
- "created_at": "2026-05-28T19:51:57.603Z",
- "default_username": "willetta",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kristofer Kuvalis",
- "initials": "K K",
- "username": null,
- "title": null,
- "user_id": 1015819509,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290143,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.505Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290144,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.507Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290145,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.509Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290146,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.511Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290147,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.513Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290148,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.515Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290149,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.517Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290150,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.519Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "rights_package": {
- "id": 957290143,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:51:52.505Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046113,
- "user_id": 1015819507,
- "guid": "f9928a6f",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:51:58.364Z",
- "updated_at": "2026-05-28T19:51:58.981Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025833661,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819507,
- "first_name": "Tyrone",
- "last_name": "Cruickshank",
- "created_at": "2026-05-28T19:51:57.427Z",
- "default_username": "maile",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tyrone Cruickshank",
- "initials": "T C",
- "username": null,
- "title": null,
- "user_id": 1015819507,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}| id required | integer |
object | |
| sync | boolean Sets |
{- "asset": {
- "description": "Updated Description.",
- "add_tag_names": [
- "string"
], - "add_tags_with_commas": "string",
- "remove_tag_names": [
- "string"
], - "replace_tag_names": [
- "New Tag 1",
- "New Tag 2"
], - "remove_links": [
- "string"
], - "filename": "string",
- "preserved_filename": "string",
- "rating": 5,
- "creator": [
- "string"
], - "description_writer": "string",
- "usage_terms": "string",
- "title": "string",
- "headline": "string",
- "alt_text": "string",
- "captured_at": null,
- "has_people": true,
- "country": "string",
- "state": "string",
- "city": "string",
- "sublocation": "string",
- "country_code": "string",
- "event": "string",
- "iptc_event_id": [
- "string"
], - "organization_in_image_name": [
- "string"
], - "extended_description": "string",
- "iptc_job_id": "string",
- "intellectual_genre": "string",
- "scene": [
- "string"
], - "subject_code": [
- "string"
], - "credit_line": "string",
- "instructions": "string",
- "iptc_rights": "string",
- "web_statement": "string",
- "model_release_status": "string",
- "property_release_status": "string",
- "authors_position": "string",
- "iptc_source": "string",
- "copyright_owner": {
- "copyright_owner_name": [
- "string"
], - "copyright_owner_id": [
- "string"
]
}, - "iptc_dig_image_guid": "string",
- "image_supplier": {
- "image_supplier_name": [
- "string"
], - "image_supplier_id": [
- "string"
]
}, - "iptc_image_supplier_image_id": "string",
- "licensor": {
- "licensor_name": [
- "string"
], - "licensor_id": [
- "string"
], - "licensor_email": [
- "string"
], - "licensor_url": [
- "string"
], - "licensor_street_address": [
- "string"
], - "licensor_city": [
- "string"
], - "licensor_postal_code": [
- "string"
], - "licensor_region": [
- "string"
], - "licensor_country": [
- "string"
], - "licensor_extended_address": [
- "string"
], - "licensor_telephone1": [
- "string"
], - "licensor_telephone2": [
- "string"
], - "licensor_telephone_type1": [
- "string"
], - "licensor_telephone_type2": [
- "string"
]
}, - "addl_model_info": "string",
- "iptc_model_release_id": [
- "string"
], - "model_age": [
- "string"
], - "minor_model_age_disclosure": "string",
- "iptc_property_release_id": [
- "string"
], - "latitude": 0,
- "longitude": 0,
- "rights_package_id": 0,
- "rights_status": "owned",
- "contract": true,
- "release": true,
- "custom_meta": {
- "Custom Meta Field 73": "Ricotta Stuffed Ravioli",
- "Custom Meta Field 74": [
- "Mushroom Risotto 55"
]
}, - "block_level": 0,
- "source_url": "string"
}, - "sync": true
}{- "id": 1060943062,
- "filename": "qui.jpg",
- "file_size": null,
- "guid": "13569d7c-dac7-49e6-a0a2-f2f429ba679d",
- "short_guid": "13569d7c",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": "Updated Description.",
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:53:02.035Z",
- "updated_at": "2026-05-28T19:53:02.035Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574472,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046128,
- "user_id": 1015819611,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:52:56.792Z",
- "updated_at": "2026-05-28T19:53:02.728Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574472/d2205d72/13569d7c-dac7-49e6-a0a2-f2f429ba679d-qui.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:52:56.789Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290183,
- "submitted_at": "2026-05-28T07:52:56.789Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-05-28T19:53:03.447Z",
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [
- {
- "id": 944088781,
- "text": "Ricotta Stuffed Ravioli",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879201472
}, - {
- "id": 944088779,
- "text": "Mushroom Risotto 55",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879201473
}
], - "user": {
- "id": 1015819611,
- "first_name": "Lettie",
- "last_name": "Walker",
- "created_at": "2026-05-28T19:52:55.058Z",
- "default_username": "christie_cassin",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lettie Walker",
- "initials": "L W",
- "username": null,
- "title": null,
- "user_id": 1015819611,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "diagram_kidnap48",
- "tags": [
- {
- "id": 1035563606,
- "name": "New Tag 1",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087242,
- "tagged_at": "2026-05-28T19:53:02.678Z",
- "tag_updated_at": "2026-05-28T19:53:02.672Z",
- "sub_type": "keyword",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false
}, - {
- "id": 1035563607,
- "name": "New Tag 2",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087243,
- "tagged_at": "2026-05-28T19:53:02.694Z",
- "tag_updated_at": "2026-05-28T19:53:02.689Z",
- "sub_type": "keyword",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false
}
], - "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [
- {
- "id": 4,
- "created_at": "2026-05-28T19:53:02.653Z",
- "title": "Mediagraph",
- "image": null,
- "description": null,
- "author": null,
- "spidered_at": "2026-05-28T19:53:03.391Z",
- "meta_error": null
}
], - "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066002,
- "created_at": "2026-05-28T19:52:56.773Z",
- "name": "Diego Rivera48",
- "description": "Autem harum est. Velit dolore ea. Tempora delectus quo.",
- "slug": "diagram_kidnap48",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Diego Rivera48"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "diagram_kidnap48"
], - "asset_group_id": 1073066002,
- "has_workflow_steps": false,
- "contribution_id": 1025833860,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819614,
- "first_name": "Vaughn",
- "last_name": "Wiza",
- "created_at": "2026-05-28T19:52:56.023Z",
- "default_username": "myron",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Vaughn Wiza",
- "initials": "V W",
- "username": null,
- "title": null,
- "user_id": 1015819614,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290183,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.785Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290184,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.787Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290185,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.789Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290186,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.791Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290187,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.793Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290188,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.795Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290189,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.797Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290190,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.800Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "rights_package": {
- "id": 957290183,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:52:50.785Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046128,
- "user_id": 1015819612,
- "guid": "d2205d72",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:52:56.784Z",
- "updated_at": "2026-05-28T19:52:57.400Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025833861,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819612,
- "first_name": "Belen",
- "last_name": "Upton",
- "created_at": "2026-05-28T19:52:55.839Z",
- "default_username": "tawna",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Belen Upton",
- "initials": "B U",
- "username": null,
- "title": null,
- "user_id": 1015819612,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}Downloads the Asset. Partial downloading is supported using the header: Range: bytes=<start>-<end>
| id required | integer |
| size | string Enum: "small" "medium" "full" "original" The maximum size requested for assets in the download (default original). To use a specific Crop Preset, use the format |
| watermarked | boolean Request watermarked versions |
| via | string Example: via=My-Integration Description of the app or integration making the API call |
| version_number | integer Example: version_number=1 Data Version number to download |
| skip_meta | boolean Default: false Do not write metadata on the fly to the file (original file size and MD5 will match) |
Update up to 100 Assets in one request. Each entry must identify the Asset by id or guid
and may provide an asset or attributes object using the same fields accepted by the single Asset update endpoint.
Use sync=true to mark each successfully updated Asset as externally synced.
| sync | boolean Sets |
| assets required | Array of objects Array of Asset update objects. Each item requires |
{- "updated": [
- {
- "id": 1060943065,
- "guid": "15c59d51-ccce-43d3-8de2-bd79718601a2"
}, - {
- "id": 1060943066,
- "guid": "7a32b6fb-93cf-4c9f-b057-8724210cd0e5"
}
], - "errors": [ ]
}Prepare a new asset version upload using this endpoint,
then PUT the data to the returned signed_upload_url,
and finally call /api/assets/:id/set_uploaded when the upload is complete.
| id required | integer |
object |
| signed_upload_url | string Use this URL to PUT the file data on S3. |
{- "asset": {
- "filename": "version-2.jpg",
- "file_size": 10000,
- "created_via": "api",
- "created_via_id": "string"
}
}| id required | integer |
{- "id": 1060943071,
- "filename": "atque.jpg",
- "file_size": null,
- "guid": "09c34b44-d626-4ae6-8908-91070691d264",
- "short_guid": "09c34b44",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:53:38.675Z",
- "updated_at": "2026-05-28T19:53:38.675Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574475,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046137,
- "user_id": 1015819674,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:53:33.448Z",
- "updated_at": "2026-05-28T19:53:38.698Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574475/877aebdd/09c34b44-d626-4ae6-8908-91070691d264-atque.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:53:33.445Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290207,
- "submitted_at": "2026-05-28T07:53:33.446Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": "2026-05-28T19:53:38.691Z",
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819674,
- "first_name": "Lenna",
- "last_name": "Hauck",
- "created_at": "2026-05-28T19:53:31.679Z",
- "default_username": "ciara",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lenna Hauck",
- "initials": "L H",
- "username": null,
- "title": null,
- "user_id": 1015819674,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "corpse-cruelty57",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "optimization_requested_by": {
- "id": 1015819665,
- "first_name": "Chong",
- "last_name": "Crona",
- "created_at": "2026-05-28T19:53:27.069Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:53:27.067Z",
- "default_username": "alysalabadie",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Chong Crona",
- "initials": "C C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015819665
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066188,
- "created_at": "2026-05-28T19:53:33.430Z",
- "name": "Joan Miro57",
- "description": "Et illum officia. Quo a voluptatem. Animi ut quae.",
- "slug": "corpse-cruelty57",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro57"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "corpse-cruelty57"
], - "asset_group_id": 1073066188,
- "has_workflow_steps": false,
- "contribution_id": 1025833980,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819677,
- "first_name": "Maryanne",
- "last_name": "Fay",
- "created_at": "2026-05-28T19:53:32.665Z",
- "default_username": "fermin_rolfson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Maryanne Fay",
- "initials": "M F",
- "username": null,
- "title": null,
- "user_id": 1015819677,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290207,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.302Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290208,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.304Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290209,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.306Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290210,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.308Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290211,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.310Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290212,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.312Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290213,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.314Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290214,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.317Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "rights_package": {
- "id": 957290207,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:27.302Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046137,
- "user_id": 1015819675,
- "guid": "877aebdd",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:53:33.441Z",
- "updated_at": "2026-05-28T19:53:34.043Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025833981,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819675,
- "first_name": "Royal",
- "last_name": "Barton",
- "created_at": "2026-05-28T19:53:32.470Z",
- "default_username": "cyndy",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Royal Barton",
- "initials": "R B",
- "username": null,
- "title": null,
- "user_id": 1015819675,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}| id required | integer |
{- "id": 1060943074,
- "filename": "ipsum.jpg",
- "file_size": null,
- "guid": "14c4b511-215d-452f-bb0b-eebbe6d4abf1",
- "short_guid": "14c4b511",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:53:50.491Z",
- "updated_at": "2026-05-28T19:53:50.491Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574476,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046140,
- "user_id": 1015819695,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:53:45.071Z",
- "updated_at": "2026-05-28T19:53:50.512Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574476/14ac2f25/14c4b511-215d-452f-bb0b-eebbe6d4abf1-ipsum.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:53:45.069Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290215,
- "submitted_at": "2026-05-28T07:53:45.069Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": "2026-05-28T19:53:50.505Z",
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819695,
- "first_name": "Ricardo",
- "last_name": "Pollich",
- "created_at": "2026-05-28T19:53:43.276Z",
- "default_username": "estherlueilwitz",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ricardo Pollich",
- "initials": "R P",
- "username": null,
- "title": null,
- "user_id": 1015819695,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "story-strikebreaker60",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "optimization_completed_by": {
- "id": 1015819686,
- "first_name": "Boyce",
- "last_name": "Cassin",
- "created_at": "2026-05-28T19:53:38.859Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:53:38.857Z",
- "default_username": "erick",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Boyce Cassin",
- "initials": "B C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015819686
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066250,
- "created_at": "2026-05-28T19:53:45.055Z",
- "name": "Da Vinci60",
- "description": "Et exercitationem at. Et dolorem inventore. Incidunt adipisci occaecati.",
- "slug": "story-strikebreaker60",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Da Vinci60"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "story-strikebreaker60"
], - "asset_group_id": 1073066250,
- "has_workflow_steps": false,
- "contribution_id": 1025834020,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819698,
- "first_name": "Elbert",
- "last_name": "Crist",
- "created_at": "2026-05-28T19:53:44.265Z",
- "default_username": "basil",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Elbert Crist",
- "initials": "E C",
- "username": null,
- "title": null,
- "user_id": 1015819698,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290215,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.078Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290216,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.079Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290217,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.081Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290218,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.083Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290219,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.085Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290220,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.086Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290221,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.088Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290222,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.090Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "rights_package": {
- "id": 957290215,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:39.078Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046140,
- "user_id": 1015819696,
- "guid": "14ac2f25",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:53:45.064Z",
- "updated_at": "2026-05-28T19:53:45.638Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025834021,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819696,
- "first_name": "Harley",
- "last_name": "Lueilwitz",
- "created_at": "2026-05-28T19:53:44.065Z",
- "default_username": "deandre",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Harley Lueilwitz",
- "initials": "H L",
- "username": null,
- "title": null,
- "user_id": 1015819696,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}| id required | integer |
{- "id": 1060943077,
- "filename": "occaecati.jpg",
- "file_size": null,
- "guid": "87df8326-a543-4e5d-bd34-28c8406904d8",
- "short_guid": "87df8326",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:54:02.685Z",
- "updated_at": "2026-05-28T19:54:02.685Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574477,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046143,
- "user_id": 1015819716,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:53:57.241Z",
- "updated_at": "2026-05-28T19:53:57.337Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574477/cb6a2355/87df8326-a543-4e5d-bd34-28c8406904d8-occaecati.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:53:57.238Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290223,
- "submitted_at": "2026-05-28T07:53:57.238Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819716,
- "first_name": "Dayle",
- "last_name": "Parker",
- "created_at": "2026-05-28T19:53:55.373Z",
- "default_username": "alma",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dayle Parker",
- "initials": "D P",
- "username": null,
- "title": null,
- "user_id": 1015819716,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "message-corpse63",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066312,
- "created_at": "2026-05-28T19:53:57.220Z",
- "name": "El Greco63",
- "description": "Doloribus necessitatibus ratione. Ut aut omnis. Sapiente quo non.",
- "slug": "message-corpse63",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "El Greco63"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "message-corpse63"
], - "asset_group_id": 1073066312,
- "has_workflow_steps": false,
- "contribution_id": 1025834060,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819719,
- "first_name": "Jere",
- "last_name": "Bogan",
- "created_at": "2026-05-28T19:53:56.387Z",
- "default_username": "taunya",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jere Bogan",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015819719,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290223,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.924Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290224,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.928Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290225,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.930Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290226,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.933Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290227,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.936Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290228,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.938Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290229,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.941Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957290230,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.946Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "rights_package": {
- "id": 957290223,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:53:50.924Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046143,
- "user_id": 1015819717,
- "guid": "cb6a2355",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:53:57.231Z",
- "updated_at": "2026-05-28T19:53:57.821Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025834061,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819717,
- "first_name": "Joesph",
- "last_name": "Gutkowski",
- "created_at": "2026-05-28T19:53:56.178Z",
- "default_username": "meredithvon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Joesph Gutkowski",
- "initials": "J G",
- "username": null,
- "title": null,
- "user_id": 1015819717,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}Select the current Asset version by number.
| id required | integer |
| version required | integer Version |
{- "id": 1060943083,
- "filename": "ullam.jpg",
- "file_size": null,
- "guid": "2e5e3f71-0908-4335-a191-300a4d604046",
- "short_guid": "2e5e3f71",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574478,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046149,
- "user_id": 1015819749,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:54:16.278Z",
- "updated_at": "2026-05-28T19:54:17.080Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574478/77ed58b2/2e5e3f71-0908-4335-a191-300a4d604046-ullam.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:54:16.276Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": null,
- "submitted_at": "2026-05-28T07:54:16.276Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819749,
- "first_name": "Werner",
- "last_name": "Kuhic",
- "created_at": "2026-05-28T19:54:14.505Z",
- "default_username": "nealwolf",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Werner Kuhic",
- "initials": "W K",
- "username": null,
- "title": null,
- "user_id": 1015819749,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "creator_tag": null,
- "storage_folder_path": "perception_defend69",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 2,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 0,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066407,
- "created_at": "2026-05-28T19:54:16.260Z",
- "name": "Picasso69",
- "description": "Vero est numquam. Laudantium quidem eum. Dolorem maiores tempore.",
- "slug": "perception_defend69",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Picasso69"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "perception_defend69"
], - "asset_group_id": 1073066407,
- "has_workflow_steps": false,
- "contribution_id": 1025834124,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819752,
- "first_name": "Kenneth",
- "last_name": "Russel",
- "created_at": "2026-05-28T19:54:15.479Z",
- "default_username": "joan_schumm",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kenneth Russel",
- "initials": "K R",
- "username": null,
- "title": null,
- "user_id": 1015819752,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290231,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.111Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290232,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.113Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290233,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.115Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290234,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.117Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290235,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.120Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290236,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.122Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290237,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.124Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290238,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:03.126Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819728,
- "name": "Michal Schmidt",
- "avatar_url": null
}, - "editable": true
}
], - "upload": {
- "id": 903046149,
- "user_id": 1015819750,
- "guid": "77ed58b2",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:54:16.272Z",
- "updated_at": "2026-05-28T19:54:16.860Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025834125,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819750,
- "first_name": "Dana",
- "last_name": "Jones",
- "created_at": "2026-05-28T19:54:15.288Z",
- "default_username": "karina",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dana Jones",
- "initials": "D J",
- "username": null,
- "title": null,
- "user_id": 1015819750,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}Sets the associated Assets as Collective Work
| id required | integer |
| asset_ids | Array of integers Array of Asset IDs to set. |
| preview_asset_id | integer ID of an Image Asset to use as the preview (e.g. rendered preview of an INDD) |
| remove_preview_asset | boolean Set to |
{- "id": 1060943084,
- "filename": "est.jpg",
- "file_size": null,
- "guid": "0db66041-8fdd-486a-8645-ffa4fe9d442b",
- "short_guid": "0db66041",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "created_at": "2026-05-28T19:54:28.793Z",
- "updated_at": "2026-05-28T19:54:28.793Z",
- "value": 1
}, - "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574479,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046150,
- "user_id": 1015819762,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:54:23.451Z",
- "updated_at": "2026-05-28T19:54:29.055Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574479/25e41e57/0db66041-8fdd-486a-8645-ffa4fe9d442b-est.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:54:23.448Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957290239,
- "submitted_at": "2026-05-28T07:54:23.448Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015819762,
- "first_name": "Craig",
- "last_name": "Rau",
- "created_at": "2026-05-28T19:54:21.691Z",
- "default_username": "dawn",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Craig Rau",
- "initials": "C R",
- "username": null,
- "title": null,
- "user_id": 1015819762,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "rights_status": "owned",
- "rights_status_name": "Owned by Organization",
- "rights_status_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "creator_tag": null,
- "storage_folder_path": "nursery-smile70",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073066447,
- "created_at": "2026-05-28T19:54:23.432Z",
- "name": "Matisse70",
- "description": "Sit aspernatur quo. Et quis perspiciatis. Non esse consectetur.",
- "slug": "nursery-smile70",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Matisse70"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "nursery-smile70"
], - "asset_group_id": 1073066447,
- "has_workflow_steps": false,
- "contribution_id": 1025834148,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015819765,
- "first_name": "Dana",
- "last_name": "Orn",
- "created_at": "2026-05-28T19:54:22.662Z",
- "default_username": "willcronin",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dana Orn",
- "initials": "D O",
- "username": null,
- "title": null,
- "user_id": 1015819765,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957290239,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.466Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290240,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.469Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290241,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.471Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290242,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.473Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290243,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.476Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290244,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.478Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290245,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.480Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957290246,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.482Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true
}
], - "rights_package": {
- "id": 957290239,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T19:54:17.466Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015819753,
- "name": "Elwood Schuppe",
- "avatar_url": null
}, - "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 903046150,
- "user_id": 1015819763,
- "guid": "25e41e57",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T19:54:23.444Z",
- "updated_at": "2026-05-28T19:54:24.034Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025834149,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015819763,
- "first_name": "Darin",
- "last_name": "Daugherty",
- "created_at": "2026-05-28T19:54:22.471Z",
- "default_username": "grahamullrich",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Darin Daugherty",
- "initials": "D D",
- "username": null,
- "title": null,
- "user_id": 1015819763,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_asset_ids": [
- 1060943085,
- 1060943086
], - "collective_work_ids": [ ]
}Returns all of your created Asset IDs with last_external_sync_at less than updated_at.
The timestamp is set in Search, Details, and Update when parameter sync=true.
| created_via | string Service that created the Assets; uses the |
| last_sync_at | string Timestamp to include un-synced Assets created after this time |
| any_user | boolean Include Assets from any user in the Organization (requires Content Manager or Admin permission) |
| custom_meta | object Filter changed Assets by Custom Meta Values keyed by field name, e.g. |
[- 1060943096
]| ids | Array of integers Array of Asset IDs to add. |
| asset_group_id | integer ID of Collection or Lightbox |
{- "count": 2,
- "added": 2
}Update tags on an asset. Supports adding, removing, or replacing tags.
| id required | integer |
object |
{- "asset": {
- "add_tag_names": [
- "string"
], - "remove_tag_names": [
- "string"
], - "replace_tag_names": [
- "string"
]
}
}{- "tags": [
- {
- "id": 1035563608,
- "name": "new-tag-1",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087244,
- "tagged_at": "2026-05-28T19:56:45.504Z",
- "tag_updated_at": "2026-05-28T19:56:45.505Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false,
- "tagged_by": {
- "id": 1015819993,
- "first_name": "Abel",
- "last_name": "Larkin",
- "created_at": "2026-05-28T19:56:33.592Z",
- "default_username": "lizzie_ferry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Abel Larkin",
- "initials": "A L",
- "username": null,
- "title": null,
- "user_id": 1015819993,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - {
- "id": 1035563609,
- "name": "new-tag-2",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087245,
- "tagged_at": "2026-05-28T19:56:45.520Z",
- "tag_updated_at": "2026-05-28T19:56:45.521Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false,
- "tagged_by": {
- "id": 1015819993,
- "first_name": "Abel",
- "last_name": "Larkin",
- "created_at": "2026-05-28T19:56:33.592Z",
- "default_username": "lizzie_ferry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Abel Larkin",
- "initials": "A L",
- "username": null,
- "title": null,
- "user_id": 1015819993,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}
]
}Get face detection results and their associated person tags for an asset.
| id required | integer |
| face_taggings | string Array of detected faces with tag associations |
[ ]Get aggregated counts for assets based on the current search/filter criteria.
{- "type": {
- "doc_count_error_upper_bound": 0,
- "sum_other_doc_count": 0,
- "buckets": [
- {
- "key": "Image",
- "doc_count": 3,
- "file_size": {
- "value": 0
}
}
]
}
}Get the most popular/viewed assets. Requires view_popularity_report permission.
| dates | Array of strings Date range for popularity stats |
| asset_type | string Filter by asset type |
| sortField | string Enum: "views_count" "downloads_count" Sort field |
| total-entries | integer |
[- {
- "filename": "sint.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015820107,
- "first_name": "Maryann",
- "last_name": "Haag",
- "created_at": "2026-05-28T19:57:37.283Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:57:37.282Z",
- "default_username": "waltraud_rice",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Maryann Haag",
- "initials": "M H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820107
}, - "created_at": "2026-05-28T19:57:38.949Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "4a9d71bd-10db-4134-89ba-772c6c1f5b35",
- "id": 1060943138
}, - {
- "filename": "ipsa.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015820111,
- "first_name": "Verlie",
- "last_name": "Kunde",
- "created_at": "2026-05-28T19:57:39.666Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:57:39.665Z",
- "default_username": "walton",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Verlie Kunde",
- "initials": "V K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820111
}, - "created_at": "2026-05-28T19:57:41.420Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "5d25ce3d-1862-4d1a-8cf3-ad41a3e873d0",
- "id": 1060943139
}, - {
- "filename": "aut.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015820115,
- "first_name": "Elvin",
- "last_name": "Bechtelar",
- "created_at": "2026-05-28T19:57:42.025Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T19:57:42.024Z",
- "default_username": "edison_jacobs",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Elvin Bechtelar",
- "initials": "E B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820115
}, - "created_at": "2026-05-28T19:57:43.804Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "ae9a7943-85ec-40d0-9a57-e56c952ddacf",
- "id": 1060943140
}
]Auto Tags are automatically generated tags from AI/ML analysis (like AWS Rekognition). They can be converted to regular tags or dismissed.
Bulk Jobs are used for batch operations on assets such as adding tags, updating metadata, moving assets between folders, and running AI-powered metadata generation.
Returns a paginated list of the current user's bulk jobs with their progress status.
| sortField | string Enum: "created_at" "updated_at" Sort field |
| total-entries | integer |
| id | string Bulk Job ID |
| guid | string Unique identifier |
| aasm_state | string Processing state: pending, processing, processed, errored, canceled |
| progress | string Completion percentage (0-100) |
| total_assets | string Total number of assets in the job |
| created_at | string Creation timestamp |
[ ]Create a new bulk job to perform batch operations on assets. Specify asset_ids and one or more operations to perform.
Common operations include:
tag_names and tag_modeadd_asset_group_idrun_custom_meta_field_idsobject |
| id | string Created Bulk Job ID |
| guid | string Unique identifier for tracking |
| aasm_state | string Initial state (pending) |
{- "bulk_job": {
- "asset_ids": [
- 0
], - "tag_names": [
- "string"
], - "tag_mode": "add",
- "description": "string",
- "description_mode": "set",
- "rights_package_id": 0,
- "rights_status": "string",
- "rating": 5,
- "add_asset_group_id": 0,
- "add_asset_group_type": "Collection",
- "remove_asset_group_id": 0,
- "remove_asset_group_type": "string",
- "custom_meta": { },
- "run_custom_meta_field_ids": [
- 0
], - "cmf_overwrite_mode": "skip",
- "destroy_all": true,
- "restore_all": true,
- "generate_alt_text": true,
- "alt_text_generation_prompt": "string"
}
}{- "guid": "35975078-8474-4db1-83a3-1b805a904e28",
- "progress": null,
- "destroy_all": false,
- "action": "Bulk Asset Edit: Tags",
- "aasm_state": "pending",
- "total_assets": 0,
- "error_message": null,
- "warnings": null,
- "error": null
}Get details of a specific bulk job by its GUID.
| id required | string |
| id | string Bulk Job ID |
| guid | string Unique identifier |
| aasm_state | string Processing state |
| progress | string Completion percentage |
| total_assets | string Total number of assets |
| error_message | string Error message if job failed |
| warnings | string Array of warning messages from processing |
| started_processing_at | string Timestamp when processing began |
| finished_processing_at | string Timestamp when processing completed |
{- "guid": "39749b56-5bc4-4034-b057-26c958fb734b",
- "progress": 0,
- "destroy_all": false,
- "action": "Bulk Asset Edit: Meta",
- "aasm_state": "pending",
- "total_assets": 0,
- "error_message": null,
- "warnings": null,
- "error": null
}Create a new bulk job that reverts the changes made by a previous bulk job. Reverts asset metadata, taggings, custom meta values, and asset-group memberships per-field, preserving any field the user has changed since the original bulk job ran. Refused for jobs older than 30 days. Authorization: any user can undo their own bulk jobs; admin and global_content members can undo any in the org.
| id required | string |
{- "guid": "471862b9-33e8-46e5-9cb4-5a7b022fd2dc",
- "progress": null,
- "destroy_all": false,
- "action": "Bulk Asset Edit: Meta",
- "aasm_state": "pending",
- "total_assets": 0,
- "error_message": null,
- "warnings": null,
- "error": null
}Preview which assets have existing values for specified Composable AI (CAI) custom meta fields. This helps users understand the impact of running AI on assets with or without existing data.
| asset_ids required | Array of integers Array of Asset IDs to check |
| cmf_ids required | Array of integers Array of Custom Meta Field IDs to check |
| total_assets | string Total number of assets checked |
| total_cmfs | string Total number of CMF fields checked |
| counts_by_field | string Breakdown by field showing assets with/without values |
| summary | string Overall summary of assets with/without any values |
{- "total_assets": 2,
- "total_cmfs": 1,
- "counts_by_field": {
- "879201581": {
- "name": "Custom Meta Field 180",
- "destination": null,
- "with_values": 0,
- "without_values": 2
}
}, - "summary": {
- "assets_with_values": 0,
- "assets_without_values": 2
}
}Returns a paginated list of assets that were processed by this bulk job.
| id required | string |
| total-entries | integer |
| assets | string Array of asset objects |
[- {
- "id": 1060943159,
- "filename": "eaque.jpg",
- "file_size": null,
- "guid": "1d8386b1-1be0-4a66-b491-ae565a5f3e4b",
- "short_guid": "1d8386b1",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574508,
- "has_alpha": false,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046225,
- "user_id": 1015820292,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:59:19.397Z",
- "updated_at": "2026-05-28T19:59:19.499Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574508/02c489a2/1d8386b1-1be0-4a66-b491-ae565a5f3e4b-eaque.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:59:19.395Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": null,
- "submitted_at": "2026-05-28T07:59:19.395Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015820292,
- "first_name": "Domingo",
- "last_name": "Daugherty",
- "created_at": "2026-05-28T19:59:13.844Z",
- "default_username": "bryce_paucek",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Domingo Daugherty",
- "initials": "D D",
- "username": null,
- "title": null,
- "user_id": 1015820292,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "creator_tag": null,
- "storage_folder_path": "miscarriage-compete146",
- "tags": [ ]
}, - {
- "id": 1060943160,
- "filename": "velit.jpg",
- "file_size": null,
- "guid": "2408aa36-e2b3-4a9d-945b-3acf6f1ef814",
- "short_guid": "2408aa36",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574508,
- "has_alpha": false,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": null,
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046226,
- "user_id": 1015820292,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T19:59:20.907Z",
- "updated_at": "2026-05-28T19:59:20.999Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574508/4dff5faa/2408aa36-e2b3-4a9d-945b-3acf6f1ef814-velit.jpg",
- "time_to_process": 0,
- "captured_at": "2026-05-27T19:59:20.905Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": null,
- "submitted_at": "2026-05-28T07:59:20.905Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "na",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015820292,
- "first_name": "Domingo",
- "last_name": "Daugherty",
- "created_at": "2026-05-28T19:59:13.844Z",
- "default_username": "bryce_paucek",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Domingo Daugherty",
- "initials": "D D",
- "username": null,
- "title": null,
- "user_id": 1015820292,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "creator_tag": null,
- "storage_folder_path": "introduction-compete147",
- "tags": [ ]
}
]Get the current queue position for a pending bulk job. Returns null if the job is not in the queue (already processing or completed).
| id required | string |
| guid | string Bulk Job GUID |
| queue_position | string Position in the processing queue (null if not queued) |
| queue_depth | string Total jobs in queue |
| aasm_state | string Current processing state |
| progress | string Completion percentage |
{- "guid": "a65074b4-a26b-46ba-a77d-72ae5d5b5f40",
- "queue_position": null,
- "queue_depth": null,
- "aasm_state": "pending",
- "progress": null
}| q | string Search by name |
| parent_id | integer Parent Collection ID |
| total-entries | integer |
[- {
- "id": 1073068432,
- "created_at": "2026-05-28T20:00:29.233Z",
- "path_names": [
- "Winslow Homer156"
], - "path_slugs": [
- "push-message156"
], - "slug": "push-message156",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073068432,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 22,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574522,
- "organization_slug": "pollichrogahn",
- "user": {
- "id": 1015820421,
- "first_name": "Grant",
- "last_name": "Jacobson",
- "created_at": "2026-05-28T20:00:28.508Z",
- "default_username": "otis_kuphal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Grant Jacobson",
- "initials": "G J",
- "username": null,
- "title": null,
- "user_id": 1015820421,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Winslow Homer156",
- "description": "Cumque ut consequatur. Ad eligendi qui. Voluptas veniam esse."
}
]object |
{- "collection": {
- "name": "Test Collection",
- "description": "string",
- "parent_id": 1073068543,
- "organizer": true,
- "featured": true,
- "enable_toc": true,
- "toc_copy": "string",
- "toc_contact": "string",
- "poster_image_guid": "string",
- "enable_embargo": true,
- "embargo_ends_at": null
}
}{- "id": 1073068544,
- "created_at": "2026-05-28T20:00:46.174Z",
- "path_names": [
- "Seurat160",
- "Test Collection"
], - "path_slugs": [
- "confuse_vegetarian160",
- "test-collection"
], - "slug": "test-collection",
- "sandbox": false,
- "organizer": null,
- "type": "Collection",
- "has_children": false,
- "parent_id": 1073068543,
- "ancestor_ids": [
- 1073068543
], - "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 1073068544,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 1,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574525,
- "organization_slug": "bechtelarstark",
- "user": {
- "id": 1015820443,
- "first_name": "Velva",
- "last_name": "Bauch",
- "created_at": "2026-05-28T20:00:40.842Z",
- "default_username": "yeseniagreen",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Velva Bauch",
- "initials": "V B",
- "username": null,
- "title": null,
- "user_id": 1015820443,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Test Collection",
- "description": null,
- "permissions": [ ],
- "workflow_steps": [ ],
- "collections": [ ],
- "enable_toc": true,
- "toc_copy": null,
- "toc_contact": null,
- "enable_poster_image": false,
- "poster_image": null,
- "links": [ ],
- "asset_group_admins": [ ],
- "webhooks": [ ]
}For tree traversal. All children of the Parent folder specified by parent_id (or blank for root level) will be returned.
| parent_id | integer ID of parent folder, blank for root level |
| total-entries | integer |
[- {
- "id": 1073068473,
- "created_at": "2026-05-28T20:00:35.338Z",
- "path_names": [
- "Caravaggio158"
], - "path_slugs": [
- "book_authority158"
], - "slug": "book_authority158",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073068473,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 26,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574523,
- "organization_slug": "lesch-upton-and-schumm",
- "user": {
- "id": 1015820432,
- "first_name": "Maud",
- "last_name": "McLaughlin",
- "created_at": "2026-05-28T20:00:34.553Z",
- "default_username": "rivka",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Maud McLaughlin",
- "initials": "M M",
- "username": null,
- "title": null,
- "user_id": 1015820432,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Caravaggio158",
- "description": "Occaecati unde qui. Officiis quidem commodi. Ab maiores quia."
}, - {
- "id": 1073068467,
- "created_at": "2026-05-28T20:00:34.545Z",
- "path_names": [
- "El Greco157"
], - "path_slugs": [
- "onion_report157"
], - "slug": "onion_report157",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073068467,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 22,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574523,
- "organization_slug": "lesch-upton-and-schumm",
- "user": {
- "id": 1015820431,
- "first_name": "Alisa",
- "last_name": "Herman",
- "created_at": "2026-05-28T20:00:33.736Z",
- "default_username": "eddie_jacobi",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Alisa Herman",
- "initials": "A H",
- "username": null,
- "title": null,
- "user_id": 1015820431,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "El Greco157",
- "description": "In aut est. Molestiae eos et. Voluptatem culpa sed."
}
]| id required | integer |
{- "id": 1073068508,
- "created_at": "2026-05-28T20:00:40.780Z",
- "path_names": [
- "Munch159"
], - "path_slugs": [
- "rung-copy159"
], - "slug": "rung-copy159",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073068508,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 22,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574524,
- "organization_slug": "waelchi-fritsch-and-heidenreich",
- "user": {
- "id": 1015820442,
- "first_name": "Jewel",
- "last_name": "Hane",
- "created_at": "2026-05-28T20:00:39.956Z",
- "default_username": "stanton",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jewel Hane",
- "initials": "J H",
- "username": null,
- "title": null,
- "user_id": 1015820442,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Munch159",
- "description": "Facere nihil omnis. Error nostrum nulla. Ex tempora labore.",
- "permissions": [ ],
- "workflow_steps": [ ],
- "enable_toc": false,
- "toc_copy": null,
- "toc_contact": null,
- "enable_poster_image": true,
- "poster_image": null,
- "links": [ ],
- "asset_group_admins": [ ],
- "webhooks": [ ]
}Update collection name, description, and settings.
| id required | integer |
object |
{- "collection": {
- "name": "string",
- "description": "string",
- "organizer": true,
- "featured": true,
- "enable_embargo": true,
- "embargo_ends_at": null
}
}{- "id": 1073068625,
- "created_at": "2026-05-28T20:00:59.199Z",
- "path_names": [
- "Updated Collection Name"
], - "path_slugs": [
- "updated-collection-name"
], - "slug": "updated-collection-name",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 1073068625,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 22,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574527,
- "organization_slug": "schowalter-and-sons",
- "user": {
- "id": 1015820476,
- "first_name": "Genesis",
- "last_name": "Gibson",
- "created_at": "2026-05-28T20:00:58.458Z",
- "default_username": "dionna",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Genesis Gibson",
- "initials": "G G",
- "username": null,
- "title": null,
- "user_id": 1015820476,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Updated Collection Name",
- "description": "Updated description",
- "permissions": [ ],
- "workflow_steps": [ ],
- "enable_toc": false,
- "toc_copy": null,
- "toc_contact": null,
- "enable_poster_image": true,
- "poster_image": null,
- "links": [ ],
- "asset_group_admins": [ ],
- "webhooks": [ ]
}| id required | integer |
| asset_id | integer ID of Asset To Add |
| position | integer ID of parent folder, blank for root level |
{- "id": 1052042141,
- "asset_group_id": 1073068579,
- "asset_id": 1060943163,
- "user_id": 1015820453,
- "created_at": "2026-05-28T20:00:53.936Z",
- "updated_at": "2026-05-28T20:00:53.936Z",
- "approval_id": null,
- "position": 1,
- "last_lightroom_sync_at": null,
- "workflow_step_id": null
}Find a collection by its slug.
| slug required | string Collection slug |
| organization_slug | string Organization slug (for cross-org lookups) |
{- "id": 1073068695,
- "created_at": "2026-05-28T20:01:10.048Z",
- "path_names": [
- "Munch165"
], - "path_slugs": [
- "corpse_judge165"
], - "slug": "corpse_judge165",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 1073068695,
- "has_workflow_steps": false,
- "sort_order": null,
- "featured": false,
- "sortable": true,
- "user_group_id": null,
- "auto_group": null,
- "view_settings": null,
- "enable_embargo": false,
- "embargo_ends_at": null,
- "embargoed": false,
- "children_sort_order": null,
- "parent_children_sort_order": "name-asc",
- "position": 22,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "has_collection_shares": false,
- "already_shared_with_current_organization": null,
- "organization_id": 1071574529,
- "organization_slug": "ebert-bashirian-and-hessel",
- "user": {
- "id": 1015820496,
- "first_name": "Thi",
- "last_name": "Spencer",
- "created_at": "2026-05-28T20:01:09.277Z",
- "default_username": "june",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Thi Spencer",
- "initials": "T S",
- "username": null,
- "title": null,
- "user_id": 1015820496,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "can_update_assets": true,
- "name": "Munch165",
- "description": "At totam et. Vel natus quas. Animi ut et.",
- "commentable": true,
- "commentable_id": 1073068695,
- "comments_count": 0
}Get the visible asset count for multiple collections at once.
| asset_groups required | Array of objects Array of asset group objects with IDs |
| counts | string Hash of collection ID to asset count |
[- {
- "id": 1073068730,
- "asset_group_id": 1073068730,
- "sub_type": null,
- "visible_assets_count": 0,
- "visible_assets_size": 0,
- "name": "Botticelli166"
}
]Comments allow users to have discussions on Lightboxes and Collections. Comments support @mentions and are rendered as markdown.
Note: The index and create endpoints require type and id query parameters
to identify the commentable object (Lightbox or Collection).
Returns all comments for a specific Lightbox or Collection.
Requires type and id parameters to identify the commentable object.
| type required | string Type of commentable object (Lightbox or Collection) |
| id required | integer ID of the commentable object |
| id | string Comment ID |
| text | string Comment text (markdown) |
| html | string Rendered HTML content |
| user | string Author information |
| what_type | string Type of commented object |
| what_id | string ID of commented object |
| mentioned_user_ids | string IDs of mentioned users |
| created_at | string Creation timestamp |
| updated_at | string Last update timestamp |
| edited_at | string When comment was edited (if applicable) |
[- {
- "id": 1,
- "text": "This is a test comment",
- "html": "<p>This is a test comment</p>\n",
- "edited_at": null,
- "what_id": 1073068760,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-05-28T20:01:20.274Z",
- "updated_at": "2026-05-28T20:01:20.274Z",
- "user": {
- "id": 1015820507,
- "first_name": "Lavinia",
- "last_name": "Buckridge",
- "created_at": "2026-05-28T20:01:15.431Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:01:15.430Z",
- "default_username": "wendirempel",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Lavinia Buckridge",
- "initials": "L B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820507,
- "username": "wendirempel",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Vettriano167",
- "id": 1073068760,
- "slug": "1073068760-award-guess167"
}
}
]Create a new comment on a Lightbox or Collection. Supports markdown formatting and @mentions.
| type required | string Type of commentable object (Lightbox or Collection) |
| id required | integer ID of the commentable object |
object |
{- "type": "string",
- "id": 0,
- "comment": {
- "text": "string"
}
}{- "id": 3,
- "text": "Great work on this lightbox!",
- "html": "<p>Great work on this lightbox!</p>\n",
- "edited_at": null,
- "what_id": 1073068790,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-05-28T20:01:25.222Z",
- "updated_at": "2026-05-28T20:01:25.222Z",
- "user": {
- "id": 1015820516,
- "first_name": "Pam",
- "last_name": "Emard",
- "created_at": "2026-05-28T20:01:20.313Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:01:20.312Z",
- "default_username": "shantelloreilly",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Pam Emard",
- "initials": "P E",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820516,
- "username": "shantelloreilly",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Titian168",
- "id": 1073068790,
- "slug": "1073068790-authority_ample168"
}
}Update a comment's text. Only the comment author can update their own comments.
The edited_at timestamp is automatically set when updating.
| id required | integer |
object |
{- "comment": {
- "text": "string"
}
}{- "id": 4,
- "text": "Updated comment text",
- "html": "<p>Updated comment text</p>\n",
- "edited_at": "2026-05-28T20:01:30.113Z",
- "what_id": 1073068820,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-05-28T20:01:30.100Z",
- "updated_at": "2026-05-28T20:01:30.117Z",
- "user": {
- "id": 1015820525,
- "first_name": "Sung",
- "last_name": "Goyette",
- "created_at": "2026-05-28T20:01:25.235Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:01:25.234Z",
- "default_username": "trula",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Sung Goyette",
- "initials": "S G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820525,
- "username": "trula",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Da Vinci169",
- "id": 1073068820,
- "slug": "1073068820-perception_glow169"
}
}Contributions (Upload Links) allow organizations to receive asset uploads from external contributors. Each contribution can have specific settings for where assets are stored, what metadata is collected, and how uploads are processed.
Returns a paginated list of contribution forms (upload links) for the organization.
| q | string Search by contribution name |
| enabled | Array of strings Filter by enabled status |
| featured | Array of strings Filter by featured status |
| enable_public | Array of strings Filter by public visibility |
| sortField | string Enum: "name" "user_groups.name" "asset_groups.name" "slug" "enable_quick_upload" "uploads_count" "contribution_memberships_count" "assets_count" Sort field |
| total-entries | integer |
| id | string Contribution ID |
| name | string Contribution name |
| slug | string URL slug |
| enabled | string Whether the contribution is active |
| featured | string Whether shown on organization page |
| enable_public | string Whether publicly accessible |
| storage_folder_id | string Target storage folder for uploads |
[- {
- "enabled": true,
- "id": 1025835628,
- "name": "ut",
- "text": "Aliquam asperiores ut. Placeat aut ratione. Illo nisi reprehenderit.",
- "featured": true,
- "slug": "nursery_bless",
- "storage_folder_id": 1073068880,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:01:39.796Z",
- "updated_at": "2026-05-28T20:01:39.796Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835628-ut",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073068880,
- "created_at": "2026-05-28T20:01:39.785Z",
- "name": "Degas171",
- "description": "Eos temporibus facere. Id nesciunt aut. Tenetur soluta error.",
- "slug": "freckle-exhibition171",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Degas171"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "freckle-exhibition171"
], - "asset_group_id": 1073068880,
- "has_workflow_steps": false,
- "contribution_id": 1025835627,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820543,
- "first_name": "Sheldon",
- "last_name": "Weimann",
- "created_at": "2026-05-28T20:01:35.053Z",
- "default_username": "rolland",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sheldon Weimann",
- "initials": "S W",
- "username": null,
- "title": null,
- "user_id": 1015820543,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}
]Create a new contribution form (upload link).
object |
| id | string Created Contribution ID |
| slug | string Generated URL slug |
{- "contribution": {
- "name": "string",
- "slug": "string",
- "text": "string",
- "storage_folder_id": 0,
- "enabled": true,
- "featured": true,
- "enable_public": true,
- "auto_approve": true,
- "auto_add": true,
- "asset_group_id": 0,
- "enable_tag_suggester": true,
- "enable_quick_upload": true,
- "require_rights_package": true,
- "require_creator_tag": true,
- "notify_emails": [
- "string"
], - "notify_copy": "string",
- "tag_names": [
- "string"
], - "rights_package_ids": [
- 0
]
}
}{- "enabled": true,
- "id": 1025835755,
- "name": "New Upload Link",
- "text": null,
- "featured": true,
- "slug": "new-upload-link",
- "storage_folder_id": 1073069090,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:02:12.109Z",
- "updated_at": "2026-05-28T20:02:12.109Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835755-new-upload-link",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073069090,
- "created_at": "2026-05-28T20:02:12.089Z",
- "name": "Magritte178",
- "description": "Vitae eum tempora. Rerum voluptas consequuntur. Aut aspernatur tempora.",
- "slug": "outside-vegetarian178",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Magritte178"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "outside-vegetarian178"
], - "asset_group_id": 1073069090,
- "has_workflow_steps": false,
- "contribution_id": 1025835753,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820606,
- "first_name": "Sandy",
- "last_name": "Sporer",
- "created_at": "2026-05-28T20:02:07.506Z",
- "default_username": "emmaline",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sandy Sporer",
- "initials": "S S",
- "username": null,
- "title": null,
- "user_id": 1015820606,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}Returns featured contributions that are displayed on the organization's public page.
[- {
- "enabled": true,
- "id": 1025835646,
- "name": "minima",
- "text": "Porro pariatur dolorem. Fugiat fugit amet. Aspernatur voluptatibus sunt.",
- "featured": true,
- "slug": "miscarriage-turkey",
- "storage_folder_id": 1073068910,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:01:44.567Z",
- "updated_at": "2026-05-28T20:01:44.567Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835646-minima",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073068910,
- "created_at": "2026-05-28T20:01:44.558Z",
- "name": "Ansel Adams172",
- "description": "Quasi dolor sequi. Maiores qui deserunt. Velit et doloribus.",
- "slug": "glow_distant172",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Ansel Adams172"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "glow_distant172"
], - "asset_group_id": 1073068910,
- "has_workflow_steps": false,
- "contribution_id": 1025835645,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820552,
- "first_name": "Roy",
- "last_name": "Cormier",
- "created_at": "2026-05-28T20:01:39.877Z",
- "default_username": "avahessel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Roy Cormier",
- "initials": "R C",
- "username": null,
- "title": null,
- "user_id": 1015820552,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}
]Returns standalone contributions (not associated with user groups) that the user has uploaded to.
[- {
- "enabled": true,
- "id": 1025835682,
- "name": "debitis",
- "text": "Accusantium rem esse. Facere quas autem. Asperiores numquam nemo.",
- "featured": true,
- "slug": "strict-linger",
- "storage_folder_id": 1073068970,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:01:53.772Z",
- "updated_at": "2026-05-28T20:01:53.772Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835682-debitis",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073068970,
- "created_at": "2026-05-28T20:01:53.764Z",
- "name": "Warhol174",
- "description": "Nam recusandae dolorum. Rerum ducimus distinctio. Architecto laudantium enim.",
- "slug": "drill-wear174",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Warhol174"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "drill-wear174"
], - "asset_group_id": 1073068970,
- "has_workflow_steps": false,
- "contribution_id": 1025835681,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820570,
- "first_name": "Ashleigh",
- "last_name": "Wunsch",
- "created_at": "2026-05-28T20:01:49.156Z",
- "default_username": "keenan",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ashleigh Wunsch",
- "initials": "A W",
- "username": null,
- "title": null,
- "user_id": 1015820570,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}
]Find a contribution by its URL slug.
| slug required | string Contribution URL slug |
{- "enabled": true,
- "id": 1025835718,
- "name": "ut",
- "text": "Quo labore necessitatibus. Facere officiis non. Reprehenderit consequuntur non.",
- "featured": true,
- "slug": "academy-introduction",
- "storage_folder_id": 1073069030,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:02:03.015Z",
- "updated_at": "2026-05-28T20:02:03.015Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835718-ut",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073069030,
- "created_at": "2026-05-28T20:02:03.001Z",
- "name": "Gauguin176",
- "description": "Eveniet tempora quis. Qui ut voluptas. Eligendi optio deserunt.",
- "slug": "curriculum_hypothesis176",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin176"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "curriculum_hypothesis176"
], - "asset_group_id": 1073069030,
- "has_workflow_steps": false,
- "contribution_id": 1025835717,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820588,
- "first_name": "Laurene",
- "last_name": "Pouros",
- "created_at": "2026-05-28T20:01:58.448Z",
- "default_username": "cary_schulist",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Laurene Pouros",
- "initials": "L P",
- "username": null,
- "title": null,
- "user_id": 1015820588,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}Get details of a specific contribution.
| id required | integer |
| id | string Contribution ID |
| name | string Contribution name |
| slug | string URL slug |
| text | string Description/instructions text |
| enabled | string Whether active |
| featured | string Whether featured on public page |
| enable_public | string Whether publicly accessible |
| auto_approve | string Auto-approve uploads |
| auto_add | string Auto-add to workflow |
| storage_folder_id | string Target storage folder |
| asset_group_id | string Target collection/lightbox ID |
| enable_tag_suggester | string Show tag suggestions |
| enable_quick_upload | string Enable simplified upload UI |
| require_rights_package | string Require rights package selection |
| require_creator_tag | string Require creator tag |
| tag_suggesters | string Available tag suggesters |
{- "enabled": true,
- "id": 1025835736,
- "name": "distinctio",
- "text": "Et qui facilis. Nihil corporis praesentium. Assumenda minima qui.",
- "featured": true,
- "slug": "outside_compete",
- "storage_folder_id": 1073069060,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:02:07.459Z",
- "updated_at": "2026-05-28T20:02:07.459Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835736-distinctio",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073069060,
- "created_at": "2026-05-28T20:02:07.448Z",
- "name": "Botticelli177",
- "description": "Eum dicta error. Quam molestiae quod. Consectetur vel itaque.",
- "slug": "ambiguous-widen177",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Botticelli177"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "ambiguous-widen177"
], - "asset_group_id": 1073069060,
- "has_workflow_steps": false,
- "contribution_id": 1025835735,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820597,
- "first_name": "Cliff",
- "last_name": "Hettinger",
- "created_at": "2026-05-28T20:02:03.048Z",
- "default_username": "garrethilll",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Cliff Hettinger",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015820597,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}Update an existing contribution configuration.
| id required | integer |
object |
{- "contribution": {
- "name": "string",
- "text": "string",
- "enabled": true,
- "featured": true,
- "enable_public": true,
- "auto_approve": true,
- "notify_emails": [
- "string"
]
}
}{- "enabled": false,
- "id": 1025835773,
- "name": "Updated Contribution Name",
- "text": "Velit commodi earum. Esse voluptas atque. Voluptate repudiandae ullam.",
- "featured": true,
- "slug": "outside_satisfaction",
- "storage_folder_id": 1073069120,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:02:16.674Z",
- "updated_at": "2026-05-28T20:02:16.684Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025835773-updated-contribution-name",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073069120,
- "created_at": "2026-05-28T20:02:16.667Z",
- "name": "Pollock179",
- "description": "Recusandae amet laudantium. Perferendis totam est. Repudiandae placeat voluptatem.",
- "slug": "strikebreaker-seller179",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock179"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "strikebreaker-seller179"
], - "asset_group_id": 1073069120,
- "has_workflow_steps": false,
- "contribution_id": 1025835772,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015820615,
- "first_name": "Leslie",
- "last_name": "Conn",
- "created_at": "2026-05-28T20:02:12.145Z",
- "default_username": "ayanna_kreiger",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Leslie Conn",
- "initials": "L C",
- "username": null,
- "title": null,
- "user_id": 1015820615,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}Creator Tags represent photographers, artists, or other content creators. They can be associated with assets to track authorship.
Crop Presets define standard crop sizes for asset downloads. Organizations can create named presets with specific dimensions.
Returns all crop presets for the organization.
| id | string Crop Preset ID |
| name | string Preset name |
| width | string Width in pixels |
| height | string Height in pixels |
[- {
- "id": 356730633,
- "user_id": 1015820687,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 296,
- "height": 552,
- "position": 0,
- "created_at": "2026-05-28T20:02:52.591Z",
- "updated_at": "2026-05-28T20:02:52.591Z",
- "closest_size": "small"
}
]Create a new crop preset for the organization.
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "id": 356730636,
- "organization_id": 1071574553,
- "user_id": 1015820705,
- "enabled": true,
- "name": "Social Media",
- "width": 1200,
- "height": 630,
- "position": 1,
- "created_at": "2026-05-28T20:03:01.673Z",
- "updated_at": "2026-05-28T20:03:01.673Z"
}Get details of a specific crop preset.
| id required | integer |
{- "id": 356730634,
- "user_id": 1015820696,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 535,
- "height": 493,
- "position": 0,
- "created_at": "2026-05-28T20:02:57.160Z",
- "updated_at": "2026-05-28T20:02:57.160Z",
- "closest_size": "small"
}Update a crop preset's settings.
| id required | integer |
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "organization_id": 1071574554,
- "name": "Updated Preset Name",
- "id": 356730637,
- "user_id": 1015820714,
- "enabled": true,
- "width": 721,
- "height": 220,
- "position": 0,
- "created_at": "2026-05-28T20:03:06.181Z",
- "updated_at": "2026-05-28T20:03:06.191Z"
}Move a crop preset from one position to another.
| oldIndex required | integer Current position index |
| newIndex required | integer New position index |
{ }Custom Meta Fields allow organizations to define custom metadata schemas for their assets. Fields can be controlled vocabularies (dropdown/multi-select), free text, or AI-powered (CAI - Composable AI) for automated metadata generation.
Returns a list of custom meta fields for the organization, optionally filtered by various criteria.
| owner_type | string Default: "Asset" Enum: "Asset" "AccessRequest" Filter by owner type |
| enabled | Array of strings Filter by enabled status |
| multi | Array of strings Filter by multi-select status |
| free | Array of strings Filter by free text status |
| value_type | string Enum: "text" "number" "date" Filter by value type |
| enable_action_menu | Array of strings Filter by action menu enabled |
| enable_ai | Array of strings Filter by AI enabled (CAI fields) |
| with_color_labels | boolean Only return fields with color labels |
| action_menu | boolean Only return action menu fields |
| filter_by_role | string Filter by user role visibility (default: true) |
| q | string Search by name or description |
| id | string Custom Meta Field ID |
| name | string Field name |
| description | string Field description |
| free | string Whether free text input is allowed |
| multi | string Whether multiple values can be selected |
| enabled | string Whether the field is active |
| enable_ai | string Whether AI generation is enabled (CAI) |
| position | string Display order position |
| value_type | string Value type: text, number, or date |
| custom_meta_values | string Available values for controlled vocabularies |
[- {
- "id": 879201711,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 310",
- "description": null,
- "multi": false,
- "created_at": "2026-05-28T20:03:19.630Z",
- "updated_at": "2026-05-28T20:03:19.630Z",
- "number": 1,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 1,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820747,
- "first_name": "Chas",
- "last_name": "Collier",
- "created_at": "2026-05-28T20:03:19.543Z",
- "default_username": "roscoe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Chas Collier",
- "initials": "C C",
- "username": null,
- "title": null,
- "user_id": 1015820747,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 879201712,
- "type": null,
- "free": true,
- "name": "Custom Meta Field 311",
- "description": null,
- "multi": false,
- "created_at": "2026-05-28T20:03:19.724Z",
- "updated_at": "2026-05-28T20:03:19.724Z",
- "number": 2,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 2,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820748,
- "first_name": "Eliseo",
- "last_name": "Wehner",
- "created_at": "2026-05-28T20:03:19.636Z",
- "default_username": "shawneebarton",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eliseo Wehner",
- "initials": "E W",
- "username": null,
- "title": null,
- "user_id": 1015820748,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 879201713,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 312",
- "description": null,
- "multi": true,
- "created_at": "2026-05-28T20:03:19.823Z",
- "updated_at": "2026-05-28T20:03:19.823Z",
- "number": 3,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 3,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820749,
- "first_name": "Kay",
- "last_name": "Olson",
- "created_at": "2026-05-28T20:03:19.730Z",
- "default_username": "shalonyost",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kay Olson",
- "initials": "K O",
- "username": null,
- "title": null,
- "user_id": 1015820749,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [
- {
- "id": 944088940,
- "text": "Risotto with Seafood 213",
- "date": null,
- "color_label": null
}, - {
- "id": 944088941,
- "text": "Ebiten maki 214",
- "date": null,
- "color_label": null
}
]
}, - {
- "id": 879201714,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-05-28T20:03:19.838Z",
- "updated_at": "2026-05-28T20:03:19.838Z",
- "number": 4,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 4,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820741,
- "first_name": "Emily",
- "last_name": "Runte",
- "created_at": "2026-05-28T20:03:15.308Z",
- "default_username": "hellen_flatley",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Emily Runte",
- "initials": "E R",
- "username": null,
- "title": null,
- "user_id": 1015820741,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}
]Create a new custom meta field for the organization.
Value Types:
text - Text input (default)number - Numeric inputdate - Date pickerFor Controlled Vocabularies:
Set free: false and provide custom_meta_values_attributes with the allowed values.
For AI (CAI) Fields:
Set enable_ai: true along with model, prompt, and source_data configuration.
object |
| id | string Created Custom Meta Field ID |
{- "custom_meta_field": {
- "name": "string",
- "description": "string",
- "owner_type": "Asset",
- "free": true,
- "multi": true,
- "required": true,
- "enabled": true,
- "value_type": "text",
- "enable_action_menu": true,
- "enable_ai": true,
- "model": "string",
- "prompt": "string",
- "source_data": "image_small",
- "destination": "none",
- "auto_run": true,
- "asset_types": [
- "string"
], - "minimum_role_level": "string",
- "custom_meta_values_attributes": [
- { }
]
}
}{- "id": 879201727,
- "type": null,
- "free": true,
- "name": "Project Code",
- "description": "Internal project identifier",
- "multi": false,
- "created_at": "2026-05-28T20:03:33.263Z",
- "updated_at": "2026-05-28T20:03:33.263Z",
- "number": 1,
- "owner_type": null,
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 1,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820768,
- "first_name": "Kyle",
- "last_name": "Kozey",
- "created_at": "2026-05-28T20:03:28.865Z",
- "default_username": "mirianhagenes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kyle Kozey",
- "initials": "K K",
- "username": null,
- "title": null,
- "user_id": 1015820768,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}Get details of a specific custom meta field including all values.
| id required | integer |
| id | string Custom Meta Field ID |
| name | string Field name |
| description | string Field description |
| free | string Whether free text is allowed |
| multi | string Whether multiple values allowed |
| enabled | string Whether field is active |
| required | string Whether field is required |
| enable_ai | string Whether AI generation is enabled |
| model | string AI model ID for CAI fields |
| prompt | string AI prompt template for CAI fields |
| source_data | string Source data configuration for CAI |
| destination | string Destination field for AI output |
| auto_run | string Whether to auto-run AI on new assets |
| asset_types | string Array of asset types this field applies to |
| custom_meta_values | string Available controlled vocabulary values |
{- "id": 879201722,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-05-28T20:03:28.843Z",
- "updated_at": "2026-05-28T20:03:28.843Z",
- "number": 4,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 4,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820759,
- "first_name": "Jeremy",
- "last_name": "Braun",
- "created_at": "2026-05-28T20:03:24.247Z",
- "default_username": "lisehintz",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeremy Braun",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015820759,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}Update an existing custom meta field configuration.
| id required | integer |
object |
{- "custom_meta_field": {
- "name": "string",
- "description": "string",
- "free": true,
- "multi": true,
- "required": true,
- "enabled": true,
- "enable_ai": true,
- "model": "string",
- "prompt": "string",
- "custom_meta_values_attributes": [
- { }
]
}
}{- "id": 879201736,
- "type": null,
- "free": false,
- "name": "Updated Category",
- "description": "Updated description",
- "multi": false,
- "created_at": "2026-05-28T20:03:42.175Z",
- "updated_at": "2026-05-28T20:03:42.187Z",
- "number": 4,
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 4,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820786,
- "first_name": "Oscar",
- "last_name": "Denesik",
- "created_at": "2026-05-28T20:03:37.846Z",
- "default_username": "merrill",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Oscar Denesik",
- "initials": "O D",
- "username": null,
- "title": null,
- "user_id": 1015820786,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}Export one or more custom meta field configurations as JSON for backup or importing into another organization.
| ids required | Array of integers Array of custom meta field IDs to export |
| name | string Field name |
| description | string Field description |
| settings | string All field settings |
| values | string Controlled vocabulary values |
[- {
- "name": "Category",
- "description": null,
- "owner_type": "Asset",
- "free": false,
- "multi": false,
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "destination": null,
- "auto_run": false,
- "enable_controlled_vocab_creation": false,
- "asset_types": [ ],
- "enabled": true,
- "notes": null,
- "minimum_role_level": null,
- "iptc_field": null,
- "exported_at": "2026-05-28T20:03:51Z",
- "version": 1,
- "custom_meta_values": [ ]
}
]Import custom meta field configuration(s) from a JSON file (previously exported).
| file required | string <binary> JSON file containing field configuration |
[- {
- "id": 879201749,
- "organization_id": 1071574565,
- "user_id": 1015820813,
- "name": "Imported Field",
- "description": "Imported from another org",
- "iptc_field": null,
- "ancestry": null,
- "number": 5,
- "position": 5,
- "free": true,
- "multi": false,
- "meta_import_id": null,
- "created_at": "2026-05-28T20:03:55.875Z",
- "updated_at": "2026-05-28T20:03:55.875Z",
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "asset_types": [ ],
- "enabled": true,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "custom_meta_values": [ ]
}
]Get custom meta fields configured for access requests (owner_type: AccessRequest).
[- {
- "id": 879201754,
- "type": null,
- "free": false,
- "name": "Request Purpose",
- "description": null,
- "multi": false,
- "created_at": "2026-05-28T20:04:00.336Z",
- "updated_at": "2026-05-28T20:04:00.336Z",
- "number": 1,
- "owner_type": "AccessRequest",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enabled": true,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "asset_types": [ ],
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "position": 1,
- "notes": null,
- "minimum_role_level": null,
- "enable_rename": false,
- "user": {
- "id": 1015820822,
- "first_name": "Perla",
- "last_name": "Rau",
- "created_at": "2026-05-28T20:03:55.887Z",
- "default_username": "moses_greenfelder",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Perla Rau",
- "initials": "P R",
- "username": null,
- "title": null,
- "user_id": 1015820822,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "custom_meta_values_attributes": [ ]
}
]Supply the size and asset IDs to download to receive the token which can then be used within the next 5 minutes to start the data download.
Partial downloading is supported using the header: Range: bytes=<start>-<end>
object |
| token | string The unique token that can be used to download the data using the |
| filename | string The suggested filename to use to save the file locally |
{- "download": {
- "size": "small",
- "watermarked": true,
- "via": "string",
- "skip_meta": true,
- "start_time": null,
- "end_time": null,
- "asset_ids": [
- 0
]
}
}{- "token": "8ed1bdf2bad52c4a95290e55e8b65c03",
- "filename": "leannonhilll-mediagraph-download-#1046393414.zip",
- "integration": null
}Filter Groups allow organizations to save and organize search filter configurations. Users can create named filter groups to quickly apply common search criteria.
Returns all filter groups for the organization.
| id | string Filter Group ID |
| name | string Filter group name |
| filters | string Array of filter configurations |
| position | string Display order position |
[- {
- "id": 643325374,
- "organization_id": 1071574569,
- "user_id": 1015820870,
- "name": "All",
- "position": 1,
- "created_at": "2026-05-28T20:04:24.882Z",
- "updated_at": "2026-05-28T20:04:24.882Z",
- "filters": [
- {
- "name": "likes",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "keywords",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "auto_tags",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "moderation_names",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "custom_meta",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "word_proximity",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "creator",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "file_ext",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "aspect_ratio",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "rating",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "has_people",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "has_gps",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "published",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "file_size",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "created_at",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "updated_at",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "containers",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "rights",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "optimization_requests",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "unsubmitted",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "uploaded_by",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "block_level",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "download_level",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "frame_status",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "faces",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "has_alt_text",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "organization",
- "admin": true,
- "public": true,
- "general": true
}
]
}, - {
- "id": 643325375,
- "organization_id": 1071574569,
- "user_id": 1015820865,
- "name": "placeat",
- "position": 2,
- "created_at": "2026-05-28T20:04:25.194Z",
- "updated_at": "2026-05-28T20:04:25.194Z",
- "filters": [ ]
}
]Create a new filter group with saved filter configurations.
object |
| id | string Created Filter Group ID |
{- "filter_group": {
- "name": "string",
- "filter_order": [
- "string"
]
}
}{- "id": 643325380,
- "organization_id": 1071574571,
- "user_id": 1015820883,
- "name": "My Saved Filters",
- "filters": null,
- "position": 3,
- "created_at": "2026-05-28T20:04:34.159Z",
- "updated_at": "2026-05-28T20:04:34.159Z"
}Get details of a specific filter group.
| id required | integer |
{- "id": 643325377,
- "organization_id": 1071574570,
- "user_id": 1015820874,
- "name": "quos",
- "position": 2,
- "created_at": "2026-05-28T20:04:29.597Z",
- "updated_at": "2026-05-28T20:04:29.597Z",
- "filters": [ ]
}Update a filter group configuration.
| id required | integer |
object |
{- "filter_group": {
- "name": "string",
- "filter_order": [
- "string"
]
}
}{- "organization_id": 1071574572,
- "name": "Updated Filter Group",
- "id": 643325382,
- "user_id": 1015820892,
- "filters": [ ],
- "position": 2,
- "created_at": "2026-05-28T20:04:38.529Z",
- "updated_at": "2026-05-28T20:04:38.542Z"
}Update the visibility of a specific filter within a filter group.
| id required | integer |
| name required | string Filter name |
| type required | string Visibility type (explore or manage) |
| visible required | string Enum: "true" "false" Visibility status |
{ }Ingestions track the status of asset uploads from external sources like cloud storage integrations (Google Drive, Dropbox, etc.).
Returns all ingestions for the organization.
| total-entries | integer |
| id | string Ingestion ID |
| aasm_state | string Ingestion state |
| source | string Source of the ingestion |
[ ]Invites allow organization administrators to invite new users to join their organization. Invites can specify role levels and user group memberships.
Returns a paginated list of invites for the organization.
| q | string Search by email or role level |
| aasm_state | string Enum: "pending" "accepted" Filter by state |
| sortField | string Enum: "email" "role_level" "created_at" Sort field |
| total-entries | integer |
| id | string Invite ID |
string Invitee email address | |
| role_level | string Assigned role level |
| aasm_state | string Invite state |
| token | string Unique invite token |
| user_group_ids | string Assigned user group IDs |
[- {
- "id": 968520711,
- "note": null,
- "created_at": "2026-05-28T20:04:56.619Z",
- "updated_at": "2026-05-28T20:04:56.619Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015820928,
- "name": "Francesco Turcotte",
- "avatar_url": null
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true
}
]Create a new invite. Multiple email addresses can be provided separated by commas or semicolons.
object |
| invites | string Array of created invites |
{- "invite": {
- "email": "string",
- "role_level": "admin",
- "note": "string",
- "user_group_ids": [
- 0
], - "asset_group_id": 0
}
}{- "invites": [
- {
- "id": 968520718,
- "user_id": 1015820982,
- "organization_id": 1071574582,
- "membership_id": null,
- "aasm_state": "pending",
- "token": "425b6098cd2339749c7889dd33f41334",
- "accepted_at": null,
- "created_at": "2026-05-28T20:05:24.495Z",
- "updated_at": "2026-05-28T20:05:24.495Z",
- "note": null,
- "role_level": "general",
- "asset_group_invite_id": null,
- "existing_user_id": null,
- "asset_group_id": null
}
]
}Get details of a specific invite.
| id required | integer |
{- "id": 968520712,
- "note": null,
- "created_at": "2026-05-28T20:05:01.174Z",
- "updated_at": "2026-05-28T20:05:01.174Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015820937,
- "name": "Elliott Pfannerstill",
- "avatar_url": null
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true
}Update an existing invite before it's accepted.
| id required | integer |
object |
{- "invite": {
- "role_level": "string",
- "note": "string",
- "user_group_ids": [
- 0
]
}
}{- "id": 968520719,
- "note": "Updated note",
- "created_at": "2026-05-28T20:05:29.306Z",
- "updated_at": "2026-05-28T20:05:29.371Z",
- "aasm_state": "pending",
- "role_level": "global_library",
- "role_level_name": "Global Library",
- "existing_user_id": null,
- "user": {
- "id": 1015820991,
- "name": "Brittani Pollich",
- "avatar_url": null
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true
}Find an invite by its unique token. Used during the accept flow.
| token required | string Invite token |
{- "id": 968520713,
- "note": null,
- "created_at": "2026-05-28T20:05:05.625Z",
- "updated_at": "2026-05-28T20:05:05.625Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015820946,
- "first_name": "Humberto",
- "last_name": "Yundt",
- "created_at": "2026-05-28T20:05:01.245Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:05:01.244Z",
- "default_username": "gertha",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Humberto Yundt",
- "initials": "H Y",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015820946
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true,
- "token": "beb05e5d37e9fb8e8bb373b8ddb69aec",
- "still_valid": true,
- "organization": {
- "id": 1071574578,
- "title": "Casper Group",
- "domain": null,
- "slug": "casper-group",
- "created_at": "2026-05-28T20:05:01.341Z",
- "updated_at": "2026-05-28T20:05:05.240Z",
- "logo_url": null,
- "large_logo_url": null,
- "watermark_url": null,
- "last_login_at": null,
- "public_headline": null,
- "public_text": null,
- "public_banner_asset_guids": [ ],
- "login_background_asset_guid": null,
- "current_role_level_name": null,
- "lightbox_upload_role_level": "global_content",
- "stripe_status": null,
- "custom_pricing": false,
- "watermark_format": "text",
- "watermark_opacity": 0.75,
- "watermark_scale": 1,
- "watermark_advanced_params": null,
- "enable_product_info": true,
- "enable_artwork_or_object": true,
- "enable_truncated_date_writing": false,
- "enable_face_tagging": false,
- "enable_membership_requests": true,
- "enable_sso": false,
- "sso_type": null,
- "encrypt_saml": false,
- "saml_email_attribute_name": "email",
- "hide_password_login": false,
- "stripe_product_code": "enterprise2",
- "invoicing": false,
- "minimum_usage": null,
- "stripe_interval": "year",
- "storage_tier": 0,
- "cas_server_url": null,
- "cas_login_url": null,
- "sso_groups_field": null,
- "use_path_for_sso": true,
- "sso_token": "36a0bea2",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": null,
- "locked": false,
- "view_settings": null,
- "reindexing": false,
- "reindexing_started_at": null,
- "reindexing_eta": null,
- "enable_ai": false,
- "enable_rekognition": false,
- "enable_general_member_auto_tags": false,
- "auto_tag_confidence_threshold": 80,
- "enable_nsfw_detection": false,
- "omit_auto_tag_results": false,
- "auto_tag_prompt": null,
- "cai_enabled": false,
- "default_timezone": null,
- "download_filename_format": null,
- "access_request_terms": null,
- "contact_email": null,
- "contact_address": null,
- "contact_phone": null,
- "company_name": null,
- "overwrite_exif_date": false,
- "include_taggers_in_admin": false,
- "default_sort_order": "created_at-desc",
- "default_landing_page": "explore",
- "enable_transcription": true,
- "share_download_role_level": "general",
- "enable_face_training_mode": false,
- "medium_download_size": 1200,
- "sidebar_settings": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "inactivity_timeout_minutes": 1440,
- "alt_text_generation_prompt": null,
- "alt_text_generation_mode": "on",
- "rights_package_expiration_notify_days": 7,
- "toc_default_enabled": true,
- "toc_default_enable_poster_image": false,
- "enable_help_menu_link": false,
- "help_menu_link_text": null,
- "help_menu_link_url": null,
- "has_bedrock_credentials": false,
- "member_grant_ids": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015820946,
- "first_name": "Humberto",
- "last_name": "Yundt",
- "created_at": "2026-05-28T20:05:01.245Z",
- "default_username": "gertha",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Humberto Yundt",
- "initials": "H Y",
- "username": null,
- "title": null,
- "user_id": 1015820946,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "can_use_cai": false,
- "support": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": null,
- "stripe_subscription_id": null,
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ]
}
}Check if an email address is available for invitation (not already invited or a member).
| email required | string Email address to check |
| ok | string True if email is available |
{- "ok": true
}Get the role levels that the current user can assign to invites.
| role_levels | string Array of assignable role levels |
[- "restricted",
- "general",
- "global_tagger",
- "global_library",
- "global_content",
- "admin"
]| user_id | integer (Optional) User ID other than Current User. Only available to admins. |
[- {
- "name": "My First Lightbox",
- "sub_type": "home",
- "description": null,
- "created_at": "2026-05-28T20:05:39.326Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070388,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070388,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070388,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574586,
- "access_request_id": null,
- "user": {
- "id": 1015821018,
- "first_name": "Carter",
- "last_name": "Hyatt",
- "created_at": "2026-05-28T20:05:38.994Z",
- "default_username": "deb",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carter Hyatt",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015821018,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070388-1027394687-my-first-lightbox",
- "id": 1068742384,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "1068742384-1027394687-my-first-lightbox"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false,
- "contribution_id": false
}, - {
- "name": "Shared with me",
- "sub_type": "shared",
- "description": null,
- "created_at": "2026-05-28T20:05:39.368Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073070391,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073070391,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073070391,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574586,
- "access_request_id": null,
- "user": {
- "id": 1015821018,
- "first_name": "Carter",
- "last_name": "Hyatt",
- "created_at": "2026-05-28T20:05:38.994Z",
- "default_username": "deb",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carter Hyatt",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015821018,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070391-1027394687-shared-with-me",
- "id": 1068742385,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "Archive",
- "sub_type": "archive",
- "description": "\n Use this lightbox organizer to reduce clutter in the projects panel.\n Store Lightboxes and Projects that are completed or inactive here.\n ",
- "created_at": "2026-05-28T20:05:39.376Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073070392,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073070392,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073070392,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574586,
- "access_request_id": null,
- "user": {
- "id": 1015821018,
- "first_name": "Carter",
- "last_name": "Hyatt",
- "created_at": "2026-05-28T20:05:38.994Z",
- "default_username": "deb",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carter Hyatt",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015821018,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070392-1027394687-archive",
- "id": 1068742386,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "Manet185",
- "sub_type": null,
- "description": "Veritatis praesentium ut. Placeat recusandae dolore. Reprehenderit et pariatur.",
- "created_at": "2026-05-28T20:05:43.754Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070413,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070413,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070413,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574586,
- "access_request_id": null,
- "user": {
- "id": 1015821018,
- "first_name": "Carter",
- "last_name": "Hyatt",
- "created_at": "2026-05-28T20:05:38.994Z",
- "default_username": "deb",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carter Hyatt",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015821018,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070413-cruelty-general185",
- "id": 1068742399,
- "path_names": [
- "Manet185"
], - "path_slugs": [
- "1068742399-cruelty-general185"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false,
- "contribution_id": false
}
]Create a new lightbox for the current user.
object |
{- "lightbox": {
- "name": "string",
- "description": "string",
- "parent_id": 0
}
}{- "name": "My New Lightbox",
- "sub_type": null,
- "description": null,
- "created_at": "2026-05-28T20:06:13.543Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070604,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070604,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070604,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574592,
- "access_request_id": null,
- "user": {
- "id": 1015821072,
- "first_name": "Reinaldo",
- "last_name": "Pouros",
- "created_at": "2026-05-28T20:06:09.017Z",
- "default_username": "thadstoltenberg",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Reinaldo Pouros",
- "initials": "R P",
- "username": null,
- "title": null,
- "user_id": 1015821072,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070604-my-new-lightbox",
- "id": 1068742498,
- "path_names": [
- "My New Lightbox"
], - "path_slugs": [
- "1068742498-my-new-lightbox"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false,
- "contribution_id": false,
- "lightbox_path_slugs": [
- "1073070604-my-new-lightbox"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 1015821072,
- "first_name": "Reinaldo",
- "last_name": "Pouros",
- "created_at": "2026-05-28T20:06:09.017Z",
- "default_username": "thadstoltenberg",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Reinaldo Pouros",
- "initials": "R P",
- "username": null,
- "title": null,
- "user_id": 1015821072,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
], - "links": [ ],
- "webhooks": [ ]
}For tree traversal. All children of the Parent folder specified by parent_id (or blank for root level) will be returned.
| parent_id | integer ID of parent Lightbox, blank for root level |
| sub_type | string Value: "folder" Set to |
| total-entries | integer |
[- {
- "name": "Archive",
- "sub_type": "archive",
- "description": "\n Use this lightbox organizer to reduce clutter in the projects panel.\n Store Lightboxes and Projects that are completed or inactive here.\n ",
- "created_at": "2026-05-28T20:05:44.465Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073070422,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073070422,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073070422,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574587,
- "access_request_id": null,
- "user": {
- "id": 1015821027,
- "first_name": "Britany",
- "last_name": "Bosco",
- "created_at": "2026-05-28T20:05:44.061Z",
- "default_username": "annettcummings",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britany Bosco",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015821027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070422-1027394692-archive",
- "id": 1068742402,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "Joan Miro187",
- "sub_type": null,
- "description": "Et et omnis. Minus corporis dignissimos. Veniam voluptas consequatur.",
- "created_at": "2026-05-28T20:05:48.985Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070444,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070444,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070444,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574587,
- "access_request_id": null,
- "user": {
- "id": 1015821027,
- "first_name": "Britany",
- "last_name": "Bosco",
- "created_at": "2026-05-28T20:05:44.061Z",
- "default_username": "annettcummings",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britany Bosco",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015821027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070444-minister_judge187",
- "id": 1068742416,
- "path_names": [
- "Joan Miro187"
], - "path_slugs": [
- "1068742416-minister_judge187"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false,
- "contribution_id": false
}, - {
- "name": "Kahlo186",
- "sub_type": null,
- "description": "Dolore dolor rerum. Saepe at laudantium. Dolorem qui porro.",
- "created_at": "2026-05-28T20:05:48.754Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070443,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070443,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070443,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574587,
- "access_request_id": null,
- "user": {
- "id": 1015821027,
- "first_name": "Britany",
- "last_name": "Bosco",
- "created_at": "2026-05-28T20:05:44.061Z",
- "default_username": "annettcummings",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britany Bosco",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015821027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070443-glow-thank186",
- "id": 1068742415,
- "path_names": [
- "Kahlo186"
], - "path_slugs": [
- "1068742415-glow-thank186"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": true,
- "contribution_id": false
}, - {
- "name": "My First Lightbox",
- "sub_type": "home",
- "description": null,
- "created_at": "2026-05-28T20:05:44.410Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070418,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070418,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070418,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574587,
- "access_request_id": null,
- "user": {
- "id": 1015821027,
- "first_name": "Britany",
- "last_name": "Bosco",
- "created_at": "2026-05-28T20:05:44.061Z",
- "default_username": "annettcummings",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britany Bosco",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015821027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070418-1027394692-my-first-lightbox",
- "id": 1068742400,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "1068742400-1027394692-my-first-lightbox"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false,
- "contribution_id": false
}, - {
- "name": "Shared with me",
- "sub_type": "shared",
- "description": null,
- "created_at": "2026-05-28T20:05:44.458Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073070421,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073070421,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073070421,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574587,
- "access_request_id": null,
- "user": {
- "id": 1015821027,
- "first_name": "Britany",
- "last_name": "Bosco",
- "created_at": "2026-05-28T20:05:44.061Z",
- "default_username": "annettcummings",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britany Bosco",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015821027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070421-1027394692-shared-with-me",
- "id": 1068742401,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}
]| id | integer The ID of your membership to this Lightbox, or ID of a Folder. |
| sub_type | string Value: "folder" Set to |
{- "name": "Pollock198",
- "sub_type": null,
- "description": "Similique aut quod. Temporibus sed porro. Doloremque tenetur dolore.",
- "created_at": "2026-05-28T20:06:03.901Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073070542,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073070542,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073070542,
- "view_settings": null,
- "always_create_lightroom_assets": false,
- "last_lightroom_sync_at": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "organization_id": 1071574590,
- "access_request_id": null,
- "user": {
- "id": 1015821054,
- "first_name": "Augustus",
- "last_name": "Schaefer",
- "created_at": "2026-05-28T20:05:59.333Z",
- "default_username": "louie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Augustus Schaefer",
- "initials": "A S",
- "username": null,
- "title": null,
- "user_id": 1015821054,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070542-thirsty_corn198",
- "id": 1068742466,
- "path_names": [
- "Pollock198"
], - "path_slugs": [
- "1068742466-thirsty_corn198"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": true,
- "contribution_id": false,
- "lightbox_path_slugs": [
- "1073070542-thirsty_corn198"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 1015821054,
- "first_name": "Augustus",
- "last_name": "Schaefer",
- "created_at": "2026-05-28T20:05:59.333Z",
- "default_username": "louie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Augustus Schaefer",
- "initials": "A S",
- "username": null,
- "title": null,
- "user_id": 1015821054,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
], - "links": [ ],
- "webhooks": [ ]
}Update a lightbox name, description, or settings. The ID is the asset_group_membership ID for the current user.
| id required | integer |
object |
{- "lightbox": {
- "name": "string",
- "description": "string",
- "sort_order": "string"
}
}{- "id": 1068742514,
- "name": "Updated Lightbox Name",
- "sub_type": null,
- "description": "Repellat ut soluta. Vero vitae voluptatibus. Et consectetur possimus.",
- "created_at": "2026-05-28T20:06:18.365Z",
- "organizer": false,
- "type": "Lightbox",
- "inherit_permissions": false,
- "inherit_upload_ability": false,
- "expires": false,
- "expires_at": null,
- "lock_on_expiration": false,
- "remove_collaborators_on_expiration": false,
- "image_and_video_permission": "small",
- "other_permission": "none",
- "watermark_all": false,
- "allow_comments": true,
- "allow_tagging": false,
- "allow_edits": false,
- "allow_invites": true,
- "invite_link": null,
- "require_auth": true,
- "allow_uploads": false,
- "upload_file_size_limit": null,
- "enable_contribution": false,
- "path_names": [
- "Updated Lightbox Name"
], - "asset_group_id": 1073070634,
- "contribution_id": false,
- "children_inherit_permissions": true,
- "share_links_count": 0,
- "override_permissions": false,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "sync_membership_to_all": true,
- "sync_permissions_to_all": true,
- "sync_upload_ability_to_all": true,
- "inherit_project_members": false,
- "user": {
- "id": 1015821081,
- "first_name": "Clarice",
- "last_name": "Gusikowski",
- "created_at": "2026-05-28T20:06:13.797Z",
- "default_username": "kelly",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Clarice Gusikowski",
- "initials": "C G",
- "username": null,
- "title": null,
- "user_id": 1015821081,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "slug": "1073070634-updated-lightbox-name",
- "asset_group_memberships_attributes": [
- {
- "id": 1068742514,
- "role": "viewer",
- "assets_count": 0,
- "user": {
- "id": 1015821081,
- "first_name": "Clarice",
- "last_name": "Gusikowski",
- "created_at": "2026-05-28T20:06:13.797Z",
- "default_username": "kelly",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Clarice Gusikowski",
- "initials": "C G",
- "username": null,
- "title": null,
- "user_id": 1015821081,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "owner": true
}
], - "asset_group_invites_attributes": [ ],
- "contribution_attributes": { },
- "enable_toc": false,
- "toc_copy": null,
- "toc_contact": null,
- "featured": false,
- "enable_poster_image": true,
- "poster_image": null
}Delete a lightbox. Assets in the lightbox are not deleted. The ID is the asset_group_membership ID for the current user. Only the owner can delete a lightbox.
| id required | integer |
{ }Transfer ownership of a lightbox to another user. The new owner must already be a member of the lightbox.
| id required | integer |
| user_id required | integer New owner user ID (must be existing lightbox member) |
{ }| total-entries | integer |
[- {
- "id": 1027394745,
- "created_at": "2026-05-28T20:06:36.395Z",
- "updated_at": "2026-05-28T20:06:36.395Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821120,
- "first_name": "Ralph",
- "last_name": "Kuvalis",
- "created_at": "2026-05-28T20:06:36.310Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:36.309Z",
- "default_username": "bryon",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Ralph Kuvalis",
- "initials": "R K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821120,
- "username": "bryon",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "R K",
- "tester": false,
- "username": "bryon",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "normal",
- "name": "Ralph Kuvalis",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394744,
- "created_at": "2026-05-28T20:06:35.626Z",
- "updated_at": "2026-05-28T20:06:35.626Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821119,
- "first_name": "Paige",
- "last_name": "Cassin",
- "created_at": "2026-05-28T20:06:35.543Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:35.542Z",
- "default_username": "johnniehomenick",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Paige Cassin",
- "initials": "P C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821119,
- "username": "johnniehomenick",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "P C",
- "tester": false,
- "username": "johnniehomenick",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "normal",
- "name": "Paige Cassin",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394743,
- "created_at": "2026-05-28T20:06:34.897Z",
- "updated_at": "2026-05-28T20:06:34.897Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821118,
- "first_name": "Maye",
- "last_name": "Ernser",
- "created_at": "2026-05-28T20:06:34.812Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:34.812Z",
- "default_username": "gradykuvalis",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Maye Ernser",
- "initials": "M E",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821118,
- "username": "gradykuvalis",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "M E",
- "tester": false,
- "username": "gradykuvalis",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "normal",
- "name": "Maye Ernser",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394742,
- "created_at": "2026-05-28T20:06:33.740Z",
- "updated_at": "2026-05-28T20:06:33.740Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821113,
- "first_name": "Rau-Crist Test",
- "last_name": "Global Tagger",
- "created_at": "2026-05-28T20:06:33.652Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:33.650Z",
- "default_username": null,
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Rau-Crist Test Global Tagger",
- "initials": "R G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821113,
- "username": null,
- "notify_new_membership_requests": false
}, - "role_level": "global_tagger",
- "role_level_name": "Global Tagger",
- "initials": "R G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "tester",
- "name": "Rau-Crist Test Global Tagger",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394741,
- "created_at": "2026-05-28T20:06:32.984Z",
- "updated_at": "2026-05-28T20:06:32.984Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821112,
- "first_name": "Rau-Crist Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-05-28T20:06:32.891Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:32.889Z",
- "default_username": null,
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Rau-Crist Test Global Library Manager",
- "initials": "R G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821112,
- "username": null,
- "notify_new_membership_requests": false
}, - "role_level": "global_library",
- "role_level_name": "Global Library",
- "initials": "R G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "tester",
- "name": "Rau-Crist Test Global Library Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394740,
- "created_at": "2026-05-28T20:06:32.205Z",
- "updated_at": "2026-05-28T20:06:32.205Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821111,
- "first_name": "Rau-Crist Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-05-28T20:06:32.109Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:32.106Z",
- "default_username": null,
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Rau-Crist Test Global Content Manager",
- "initials": "R G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821111,
- "username": null,
- "notify_new_membership_requests": false
}, - "role_level": "global_content",
- "role_level_name": "Global Content",
- "initials": "R G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "tester",
- "name": "Rau-Crist Test Global Content Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394739,
- "created_at": "2026-05-28T20:06:31.416Z",
- "updated_at": "2026-05-28T20:06:31.416Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821110,
- "first_name": "Rau-Crist Test",
- "last_name": "General Member",
- "created_at": "2026-05-28T20:06:31.323Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:31.321Z",
- "default_username": null,
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Rau-Crist Test General Member",
- "initials": "R G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821110,
- "username": null,
- "notify_new_membership_requests": false
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "R G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "tester",
- "name": "Rau-Crist Test General Member",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027394738,
- "created_at": "2026-05-28T20:06:30.632Z",
- "updated_at": "2026-05-28T20:06:30.632Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821109,
- "first_name": "Merrill",
- "last_name": "Gislason",
- "created_at": "2026-05-28T20:06:30.322Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:30.321Z",
- "default_username": "rosinamohr",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Merrill Gislason",
- "initials": "M G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821109,
- "username": "rosinamohr",
- "notify_new_membership_requests": true
}, - "role_level": "admin",
- "role_level_name": "Admin",
- "initials": "M G",
- "tester": false,
- "username": "rosinamohr",
- "title": null,
- "last_login_at": null,
- "is_owner": true,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "normal",
- "name": "Merrill Gislason",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": false
}
]| id required | integer |
{- "id": 1027394751,
- "created_at": "2026-05-28T20:06:41.699Z",
- "updated_at": "2026-05-28T20:06:41.699Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015821130,
- "first_name": "Franklyn",
- "last_name": "Oberbrunner",
- "created_at": "2026-05-28T20:06:41.613Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:06:41.612Z",
- "default_username": "vicente",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Franklyn Oberbrunner",
- "initials": "F O",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821130,
- "username": "vicente",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "F O",
- "tester": false,
- "username": "vicente",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "member_type": "normal",
- "name": "Franklyn Oberbrunner",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}| id required | integer |
object |
{- "membership": {
- "role_level": "global_library"
}
}{- "organization_id": 1071574598,
- "id": 1027394757,
- "user_id": 1015821140,
- "invite_id": null,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:06:46.949Z",
- "updated_at": "2026-05-28T20:06:47.700Z",
- "role_level": "global_library",
- "username": "dorothea",
- "title": null,
- "last_login_at": null,
- "box_token": null,
- "box_token_set_at": null,
- "single_use_token": null,
- "box_user": null,
- "grid_color": null,
- "dropbox_token": null,
- "dropbox_token_set_at": null,
- "dropbox_user": null,
- "google_drive_refresh_token": null,
- "google_drive_access_token": null,
- "google_drive_connected_at": null,
- "google_drive_account": null,
- "frame_token": null,
- "frame_token_set_at": null,
- "frame_account": null,
- "lightroom_token": null,
- "lightroom_token_set_at": null,
- "lightroom_account": null,
- "lightroom_catalog_id": null,
- "created_via": null,
- "rekognition_user_id": null,
- "face_tag_id": null,
- "notify_new_membership_requests": true,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "name": "Martin Grimes",
- "initials": "M G",
- "avatar_url": null,
- "user_group_ids": [ ]
}| id required | integer |
| status | string Enum: "active" "deactivated" Status |
{- "organization_id": 1071574599,
- "id": 1027394763,
- "user_id": 1015821150,
- "invite_id": null,
- "aasm_state": "deactivated",
- "created_at": "2026-05-28T20:06:52.400Z",
- "updated_at": "2026-05-28T20:06:53.074Z",
- "role_level": "general",
- "username": "jamika",
- "title": null,
- "last_login_at": null,
- "box_token": null,
- "box_token_set_at": null,
- "single_use_token": null,
- "box_user": null,
- "grid_color": null,
- "dropbox_token": null,
- "dropbox_token_set_at": null,
- "dropbox_user": null,
- "google_drive_refresh_token": null,
- "google_drive_access_token": null,
- "google_drive_connected_at": null,
- "google_drive_account": null,
- "frame_token": null,
- "frame_token_set_at": null,
- "frame_account": null,
- "lightroom_token": null,
- "lightroom_token_set_at": null,
- "lightroom_account": null,
- "lightroom_catalog_id": null,
- "created_via": null,
- "rekognition_user_id": null,
- "face_tag_id": null,
- "notify_new_membership_requests": true,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": false,
- "name": "Adela Ferry",
- "initials": "A F",
- "avatar_url": null,
- "user_group_ids": [ ]
}Meta Downloads generate a CSV export of asset metadata. The download is processed in the background and progress is reported via WebSocket (metaDownloadProgress event on UserChannel).
When complete, the CSV file can be downloaded via the GET /api/downloads/table_data endpoint using the S3 key.
Optionally, the CSV can be emailed to the user when complete.
Returns a paginated list of metadata CSV exports for the current organization.
Supports sorting by created_at and total_assets, and filtering by date range and user.
| sortField | string Enum: "created_at" "total_assets" Sort field |
| sortOrder | string Enum: "ascend" "descend" Sort order |
| dates | Array of strings Date range filter (array of two ISO 8601 dates) |
| user_id | integer Filter by user ID |
| total-entries | integer |
| id | string Meta Download ID |
| guid | string Unique identifier |
| created_at | string Creation timestamp |
| aasm_state | string Processing state: pending, processing, processed, errored |
| total_assets | string Number of assets in the export |
| progress | string Completion percentage (0-100) |
| s3_key | string S3 object key for downloading the CSV via |
| send_email | string Whether the user requested email delivery |
| user | string User who initiated the export |
[- {
- "id": 1,
- "guid": "e78336e4-8665-426f-abae-6db7c127bdac",
- "created_at": "2026-05-28T20:07:00.766Z",
- "aasm_state": "pending",
- "total_assets": 1,
- "progress": 0,
- "s3_key": "1071574600/reports/48d46fad-5ea2-43af-8d0b-fd38818c6981/meta-test.csv",
- "send_email": false,
- "error_message": null,
- "started_at": null,
- "completed_at": null,
- "user": {
- "id": 1015821151,
- "support": false,
- "avatar_url": null,
- "name": "Rona Batz",
- "initials": "R B",
- "user_id": 1015821151
}
}
]Creates a MetaDownload record and enqueues a background job to generate a CSV file containing the full indexed metadata for the specified assets.
Progress is reported via WebSocket at 5% intervals:
{ "type": "metaDownloadProgress", "guid": "...", "progress": 45 }
On completion:
{ "type": "metaDownloadProgress", "guid": "...", "progress": 100, "done": true, "key": "..." }
Use the key with GET /api/downloads/table_data?key= to download the file.
| asset_ids required | string Comma-separated list of Asset IDs to include in the export |
| send_email | string Set to 'true' to email the CSV to the requesting user when complete |
| column_preset | string Enum: "basic" "all" "custom" Column preset: 'basic' (common fields + custom meta), 'all' (everything), or 'custom' (specify columns) |
| columns | Array of strings Array of column keys when column_preset is 'custom' |
| guid | string Unique identifier for tracking progress via WebSocket |
{- "guid": "639aeb40-1db3-4825-a9ae-37c05c546379"
}Returns all available columns grouped by category, plus the basic column preset list.
| columns | string Array of column definitions with key, label, and group |
| basic | string Array of column keys in the basic preset |
{- "columns": [
- {
- "key": "id",
- "label": "Id",
- "group": "Core"
}, - {
- "key": "guid",
- "label": "Guid",
- "group": "Core"
}, - {
- "key": "short_guid",
- "label": "Short Guid",
- "group": "Core"
}, - {
- "key": "organization_id",
- "label": "Organization",
- "group": "Core"
}, - {
- "key": "user_id",
- "label": "User",
- "group": "Core"
}, - {
- "key": "type",
- "label": "Type",
- "group": "Core"
}, - {
- "key": "ext",
- "label": "Ext",
- "group": "Core"
}, - {
- "key": "aasm_state",
- "label": "Aasm State",
- "group": "Core"
}, - {
- "key": "created_at",
- "label": "Created At",
- "group": "Core"
}, - {
- "key": "updated_at",
- "label": "Updated At",
- "group": "Core"
}, - {
- "key": "filename",
- "label": "Filename",
- "group": "File"
}, - {
- "key": "file_size",
- "label": "File Size",
- "group": "File"
}, - {
- "key": "file_size_mb",
- "label": "File Size Mb",
- "group": "File"
}, - {
- "key": "width",
- "label": "Width",
- "group": "File"
}, - {
- "key": "height",
- "label": "Height",
- "group": "File"
}, - {
- "key": "duration",
- "label": "Duration",
- "group": "File"
}, - {
- "key": "aspect",
- "label": "Aspect",
- "group": "File"
}, - {
- "key": "captured_at",
- "label": "Captured At",
- "group": "Dates"
}, - {
- "key": "captured_at_truncation",
- "label": "Captured At Truncation",
- "group": "Dates"
}, - {
- "key": "storage_folder_path",
- "label": "Storage Folder Path",
- "group": "Location"
}, - {
- "key": "storage_folder_path_slugs",
- "label": "Storage Folder Path Slugs",
- "group": "Location"
}, - {
- "key": "storage_folder_path_names",
- "label": "Storage Folder Path Names",
- "group": "Location"
}, - {
- "key": "collection_paths",
- "label": "Collection Paths",
- "group": "Location"
}, - {
- "key": "taxonomy_paths",
- "label": "Taxonomy Paths",
- "group": "Location"
}, - {
- "key": "grid_url",
- "label": "Grid Url",
- "group": "Location"
}, - {
- "key": "gps",
- "label": "Gps",
- "group": "Location"
}, - {
- "key": "visible_tag_names",
- "label": "Visible Tag Names",
- "group": "Tags"
}, - {
- "key": "tag_text",
- "label": "Tag Text",
- "group": "Tags"
}, - {
- "key": "auto_tag_names",
- "label": "Auto Tag Names",
- "group": "Tags"
}, - {
- "key": "auto_tag_text",
- "label": "Auto Tag Text",
- "group": "Tags"
}, - {
- "key": "face_names",
- "label": "Face Names",
- "group": "Tags"
}, - {
- "key": "creator_tag_text",
- "label": "Creator Tag Text",
- "group": "Tags"
}, - {
- "key": "tag_description",
- "label": "Tag Description",
- "group": "Tags"
}, - {
- "key": "rights_code",
- "label": "Rights Code",
- "group": "Rights"
}, - {
- "key": "contract",
- "label": "Contract",
- "group": "Rights"
}, - {
- "key": "release",
- "label": "Release",
- "group": "Rights"
}, - {
- "key": "released",
- "label": "Released",
- "group": "Rights"
}, - {
- "key": "expired",
- "label": "Expired",
- "group": "Rights"
}, - {
- "key": "content",
- "label": "Content",
- "group": "Content"
}, - {
- "key": "ocr_content",
- "label": "Ocr Content",
- "group": "Content"
}, - {
- "key": "transcript",
- "label": "Transcript",
- "group": "Content"
}, - {
- "key": "submitted",
- "label": "Submitted",
- "group": "Workflow"
}, - {
- "key": "submitted_at",
- "label": "Submitted At",
- "group": "Workflow"
}, - {
- "key": "approved_workflow_step_ids",
- "label": "Approved Workflow Step Ids",
- "group": "Workflow"
}, - {
- "key": "rejected_workflow_step_ids",
- "label": "Rejected Workflow Step Ids",
- "group": "Workflow"
}, - {
- "key": "picked_workflow_step_ids",
- "label": "Picked Workflow Step Ids",
- "group": "Workflow"
}, - {
- "key": "up_voted_user_ids",
- "label": "Up Voted User Ids",
- "group": "Engagement"
}, - {
- "key": "down_voted_user_ids",
- "label": "Down Voted User Ids",
- "group": "Engagement"
}, - {
- "key": "published",
- "label": "Published",
- "group": "Engagement"
}, - {
- "key": "publication_text",
- "label": "Publication Text",
- "group": "Engagement"
}, - {
- "key": "upload_id",
- "label": "Upload",
- "group": "Upload"
}, - {
- "key": "created_via",
- "label": "Created Via",
- "group": "Upload"
}, - {
- "key": "source_url",
- "label": "Source Url",
- "group": "Upload"
}, - {
- "key": "preservedfilename",
- "label": "Preserved Filename",
- "group": "IPTC"
}, - {
- "key": "rating",
- "label": "Rating",
- "group": "IPTC"
}, - {
- "key": "creator",
- "label": "Creator",
- "group": "IPTC"
}, - {
- "key": "ciadrextadr",
- "label": "Creator Contact Info - Address Line 1",
- "group": "IPTC"
}, - {
- "key": "ciadrcity",
- "label": "Creator Contact Info - City",
- "group": "IPTC"
}, - {
- "key": "ciadrregion",
- "label": "Creator Contact Info - State",
- "group": "IPTC"
}, - {
- "key": "ciadrpcode",
- "label": "Creator Contact Info - Postal Code",
- "group": "IPTC"
}, - {
- "key": "ciadrctry",
- "label": "Creator Contact Info - Country",
- "group": "IPTC"
}, - {
- "key": "ciemailwork",
- "label": "Creator Contact Info - Work Email",
- "group": "IPTC"
}, - {
- "key": "citelwork",
- "label": "Creator Contact Info - Work Telephone",
- "group": "IPTC"
}, - {
- "key": "ciurlwork",
- "label": "Creator Contact Info - Work URL",
- "group": "IPTC"
}, - {
- "key": "description",
- "label": "Description",
- "group": "IPTC"
}, - {
- "key": "descriptionwriter",
- "label": "Description Writer",
- "group": "IPTC"
}, - {
- "key": "usageterms",
- "label": "Usage Rights",
- "group": "IPTC"
}, - {
- "key": "title",
- "label": "Title",
- "group": "IPTC"
}, - {
- "key": "headline",
- "label": "Headline",
- "group": "IPTC"
}, - {
- "key": "alttext",
- "label": "Alternative Text",
- "group": "IPTC"
}, - {
- "key": "has_people",
- "label": "Has People?",
- "group": "IPTC"
}, - {
- "key": "country",
- "label": "Country",
- "group": "IPTC"
}, - {
- "key": "state",
- "label": "State",
- "group": "IPTC"
}, - {
- "key": "city",
- "label": "City",
- "group": "IPTC"
}, - {
- "key": "sublocation",
- "label": "Sublocation",
- "group": "IPTC"
}, - {
- "key": "countrycode",
- "label": "Country Code",
- "group": "IPTC"
}, - {
- "key": "event",
- "label": "Event Shown",
- "group": "IPTC"
}, - {
- "key": "iptceventid",
- "label": "Event Identifier(s)",
- "group": "IPTC"
}, - {
- "key": "person_tag_names",
- "label": "Person Shown",
- "group": "IPTC"
}, - {
- "key": "persondescription",
- "label": "Person In Image W Details - Description",
- "group": "IPTC"
}, - {
- "key": "personid",
- "label": "Person In Image W Details - ID",
- "group": "IPTC"
}, - {
- "key": "personname",
- "label": "Person In Image W Details - Name",
- "group": "IPTC"
}, - {
- "key": "organizationinimagename",
- "label": "Organization Shown",
- "group": "IPTC"
}, - {
- "key": "extendeddescription",
- "label": "Extended Description",
- "group": "IPTC"
}, - {
- "key": "iptcjobid",
- "label": "Job ID",
- "group": "IPTC"
}, - {
- "key": "intellectualgenre",
- "label": "Intellectual Genre",
- "group": "IPTC"
}, - {
- "key": "scene",
- "label": "Scene Code",
- "group": "IPTC"
}, - {
- "key": "subjectcode",
- "label": "Subject Code",
- "group": "IPTC"
}, - {
- "key": "creditline",
- "label": "Credit Line",
- "group": "IPTC"
}, - {
- "key": "instructions",
- "label": "Special Instructions",
- "group": "IPTC"
}, - {
- "key": "iptcrights",
- "label": "Copyright Notice",
- "group": "IPTC"
}, - {
- "key": "webstatement",
- "label": "Web Statement of Rights",
- "group": "IPTC"
}, - {
- "key": "modelreleasestatus",
- "label": "Model Release Status",
- "group": "IPTC"
}, - {
- "key": "propertyreleasestatus",
- "label": "Property Release Status",
- "group": "IPTC"
}, - {
- "key": "authorsposition",
- "label": "CreatorContactInfo Job Title",
- "group": "IPTC"
}, - {
- "key": "iptcsource",
- "label": "Source",
- "group": "IPTC"
}, - {
- "key": "copyrightownername",
- "label": "Copyright Owner - Name",
- "group": "IPTC"
}, - {
- "key": "copyrightownerid",
- "label": "Copyright Owner - ID",
- "group": "IPTC"
}, - {
- "key": "iptcdigimageguid",
- "label": "Digital Image GUID",
- "group": "IPTC"
}, - {
- "key": "imagesuppliername",
- "label": "Image Supplier - Name",
- "group": "IPTC"
}, - {
- "key": "imagesupplierid",
- "label": "Image Supplier - ID",
- "group": "IPTC"
}, - {
- "key": "iptcimagesupplierimageid",
- "label": "Image Supplier Image ID",
- "group": "IPTC"
}, - {
- "key": "licensorname",
- "label": "Licensor - Name",
- "group": "IPTC"
}, - {
- "key": "licensorid",
- "label": "Licensor - Id",
- "group": "IPTC"
}, - {
- "key": "licensoremail",
- "label": "Licensor - Email",
- "group": "IPTC"
}, - {
- "key": "licensorurl",
- "label": "Licensor - Url",
- "group": "IPTC"
}, - {
- "key": "licensorstreetaddress",
- "label": "Licensor - Street Address",
- "group": "IPTC"
}, - {
- "key": "licensorcity",
- "label": "Licensor - City",
- "group": "IPTC"
}, - {
- "key": "licensorpostalcode",
- "label": "Licensor - Postal Code",
- "group": "IPTC"
}, - {
- "key": "licensorregion",
- "label": "Licensor - Region",
- "group": "IPTC"
}, - {
- "key": "licensorcountry",
- "label": "Licensor - Country",
- "group": "IPTC"
}, - {
- "key": "licensorextendedaddress",
- "label": "Licensor - Extended Address",
- "group": "IPTC"
}, - {
- "key": "licensortelephone1",
- "label": "Licensor - Telephone1",
- "group": "IPTC"
}, - {
- "key": "licensortelephone2",
- "label": "Licensor - Telephone2",
- "group": "IPTC"
}, - {
- "key": "licensortelephonetype1",
- "label": "Licensor - Telephone Type1",
- "group": "IPTC"
}, - {
- "key": "licensortelephonetype2",
- "label": "Licensor - Telephone Type2",
- "group": "IPTC"
}, - {
- "key": "addlmodelinfo",
- "label": "Additional Model Info",
- "group": "IPTC"
}, - {
- "key": "iptcmodelreleaseid",
- "label": "Model Release ID",
- "group": "IPTC"
}, - {
- "key": "modelage",
- "label": "Model Age",
- "group": "IPTC"
}, - {
- "key": "minormodelagedisclosure",
- "label": "Minor Model Age",
- "group": "IPTC"
}, - {
- "key": "iptcpropertyreleaseid",
- "label": "Property Release ID",
- "group": "IPTC"
}, - {
- "key": "productname",
- "label": "Product In Image - Name",
- "group": "IPTC"
}, - {
- "key": "productdescription",
- "label": "Product In Image - Description",
- "group": "IPTC"
}, - {
- "key": "productgtin",
- "label": "Product In Image - GTIN",
- "group": "IPTC"
}, - {
- "key": "productsku",
- "label": "Product In Image - SKU",
- "group": "IPTC"
}, - {
- "key": "aotitle",
- "label": "Artwork Or Object - Title of Work",
- "group": "IPTC"
}, - {
- "key": "aocircadatecreated",
- "label": "Artwork Or Object - Circa Date Created",
- "group": "IPTC"
}, - {
- "key": "aocontentdescription",
- "label": "Artwork Or Object - Art Content Description",
- "group": "IPTC"
}, - {
- "key": "aocontributiondescription",
- "label": "Artwork Or Object - Contribution Description",
- "group": "IPTC"
}, - {
- "key": "aocopyrightnotice",
- "label": "Artwork Or Object - Art Copyright Notice",
- "group": "IPTC"
}, - {
- "key": "aocreator",
- "label": "Artwork Or Object - Art Creator",
- "group": "IPTC"
}, - {
- "key": "aocreatorid",
- "label": "Artwork Or Object - Art Creator ID",
- "group": "IPTC"
}, - {
- "key": "aocurrentcopyrightownerid",
- "label": "Artwork Or Object - Current Copyright Owner ID",
- "group": "IPTC"
}, - {
- "key": "aocurrentlicensorid",
- "label": "Artwork Or Object - Current Licensor ID",
- "group": "IPTC"
}, - {
- "key": "aocurrentlicensorname",
- "label": "Artwork Or Object - Current Licensor Name ",
- "group": "IPTC"
}, - {
- "key": "aodatecreated",
- "label": "Artwork Or Object - Date Art Created ",
- "group": "IPTC"
}, - {
- "key": "aophysicaldescription",
- "label": "Artwork Or Object - Physical Description ",
- "group": "IPTC"
}, - {
- "key": "aosource",
- "label": "Artwork Or Object - Art Source",
- "group": "IPTC"
}, - {
- "key": "aosourceinventorynumber",
- "label": "Artwork Or Object - Art Source Inventory Number",
- "group": "IPTC"
}, - {
- "key": "aosourceinventoryurl",
- "label": "Artwork Or Object - Art Source Inventory URL",
- "group": "IPTC"
}, - {
- "key": "aostyleperiod",
- "label": "Artwork Or Object - Art Style Period",
- "group": "IPTC"
}, - {
- "key": "tag_names",
- "label": "Keyword Tags",
- "group": "IPTC"
}, - {
- "key": "cmf1",
- "label": "Custom Meta Field 457",
- "group": "Custom Meta"
}, - {
- "key": "cmf2",
- "label": "Custom Meta Field 458",
- "group": "Custom Meta"
}, - {
- "key": "cmf3",
- "label": "Custom Meta Field 459",
- "group": "Custom Meta"
}
], - "basic": [
- "guid",
- "filename",
- "created_at",
- "captured_at",
- "updated_at",
- "auto_tag_names",
- "creator",
- "rating",
- "description",
- "usageterms",
- "title",
- "headline",
- "alttext",
- "face_names",
- "creditline",
- "iptcrights",
- "visible_tag_names"
]
}Update the email preference on an in-progress metadata export.
| id required | string Meta Download GUID |
| send_email required | string Set to 'true' to enable email delivery, 'false' to disable |
{ }Meta Imports allow bulk updating of asset metadata from CSV/Excel spreadsheets. Users can upload a spreadsheet, map columns to asset fields, and apply the metadata to matching assets.
Returns a paginated list of meta imports for the organization.
| q | string Search by note or filename |
| sortField | string Enum: "created_at" "filename" "aasm_state" Sort field |
| total-entries | integer |
| id | string Meta Import ID |
| filename | string Original filename |
| aasm_state | string Processing state |
| rows | string Number of rows in spreadsheet |
| matches | string Number of matched assets |
| duplicates | string Number of duplicate matches |
[- {
- "id": 468021839,
- "user": {
- "id": 1015821286,
- "first_name": "Patrica",
- "last_name": "Metz",
- "created_at": "2026-05-28T20:08:01.701Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:08:01.699Z",
- "default_username": "terrellrutherford",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Patrica Metz",
- "initials": "P M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821286
}, - "aasm_state": "analyzed",
- "rows": 1,
- "matches": 0,
- "duplicates": 0,
- "upload_id": null,
- "asset_id": null,
- "processed_at": null,
- "create_unmatched_assets": false,
- "created_at": "2026-05-28T20:08:06.332Z",
- "updated_at": "2026-05-28T20:08:06.384Z",
- "filename": "test_import.csv",
- "match_column": "filename",
- "match_attribute": "filename",
- "partial_match": false,
- "note": null,
- "parse_error": null,
- "unmatched_values_size": 0,
- "columns": [
- {
- "name": "filename",
- "index": 0,
- "mapping": null
}
]
}
]Get details of a specific meta import including column mappings and match statistics.
| id required | integer |
| columns | string Array of column configurations with mappings |
| match_column | string Column used for matching assets |
| match_attribute | string Asset attribute to match against (filename, guid, created_via_id) |
| unmatched_values | string Values that didn't match any assets |
{- "id": 468021840,
- "user": {
- "id": 1015821295,
- "first_name": "Reinaldo",
- "last_name": "Moen",
- "created_at": "2026-05-28T20:08:06.458Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:08:06.458Z",
- "default_username": "charley",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Reinaldo Moen",
- "initials": "R M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821295
}, - "aasm_state": "analyzed",
- "rows": 1,
- "matches": 0,
- "duplicates": 0,
- "upload_id": null,
- "asset_id": null,
- "processed_at": null,
- "create_unmatched_assets": false,
- "created_at": "2026-05-28T20:08:11.021Z",
- "updated_at": "2026-05-28T20:08:11.070Z",
- "filename": "test_import.csv",
- "match_column": "filename",
- "match_attribute": "filename",
- "partial_match": false,
- "note": null,
- "parse_error": null,
- "unmatched_values_size": 0,
- "columns": [
- {
- "name": "filename",
- "index": 0,
- "mapping": null
}
]
}Update meta import settings like match column or partial matching options.
| id required | integer |
object |
{- "meta_import": {
- "match_column": "string",
- "match_attribute": "string",
- "partial_match": true,
- "note": "string"
}
}{- "id": 468021841,
- "user": {
- "id": 1015821304,
- "first_name": "Janey",
- "last_name": "Kunde",
- "created_at": "2026-05-28T20:08:11.139Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:08:11.138Z",
- "default_username": "carsonlowe",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Janey Kunde",
- "initials": "J K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821304
}, - "aasm_state": "analyzed",
- "rows": 1,
- "matches": 0,
- "duplicates": 0,
- "upload_id": null,
- "asset_id": null,
- "processed_at": null,
- "create_unmatched_assets": false,
- "created_at": "2026-05-28T20:08:15.747Z",
- "updated_at": "2026-05-28T20:08:15.860Z",
- "filename": "test_import.csv",
- "match_column": "filename",
- "match_attribute": "filename",
- "partial_match": true,
- "note": "Updated note",
- "parse_error": null,
- "unmatched_values_size": 0,
- "columns": [
- {
- "name": "filename",
- "index": 0,
- "mapping": null
}
]
}Update the field mapping for a specific column in the meta import.
| id required | integer |
| column required | object Column mapping configuration |
{- "id": 468021842,
- "user": {
- "id": 1015821313,
- "first_name": "Alaina",
- "last_name": "Brekke",
- "created_at": "2026-05-28T20:08:15.872Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:08:15.871Z",
- "default_username": "mila",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Alaina Brekke",
- "initials": "A B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821313
}, - "aasm_state": "analyzed",
- "rows": 1,
- "matches": 0,
- "duplicates": 0,
- "upload_id": null,
- "asset_id": null,
- "processed_at": null,
- "create_unmatched_assets": false,
- "created_at": "2026-05-28T20:08:20.561Z",
- "updated_at": "2026-05-28T20:08:20.673Z",
- "filename": "test_import.csv",
- "match_column": "filename",
- "match_attribute": "filename",
- "partial_match": false,
- "note": null,
- "parse_error": null,
- "unmatched_values_size": 0,
- "columns": [
- {
- "name": "filename",
- "index": 0,
- "mapping": "title"
}
]
}Get the list of assets that were updated by this meta import.
| id required | integer |
| sortField | string Value: "filename" Sort field |
| total-entries | integer |
| asset | string Asset details |
| meta | string Metadata that was applied from the spreadsheet row |
[ ]Notifications inform users about activity in their organization, such as comments, uploads, and workflow updates.
Returns all notifications for the current user in the organization.
| id | string Notification ID |
| seen_at | string When the notification was marked as seen |
| created_at | string When the notification was created |
| what | string The notifiable object |
[ ]Get details about the Organization and your Abilities (https://github.com/stalniy/casl) for it via its slug.
| slug | string The slug of the Organization |
{- "organization": {
- "id": 1071574618,
- "title": "Borer-Shields",
- "domain": null,
- "slug": "borershields",
- "created_at": "2026-05-28T20:08:44.290Z",
- "updated_at": "2026-05-28T20:08:48.305Z",
- "logo_url": null,
- "large_logo_url": null,
- "watermark_url": null,
- "last_login_at": null,
- "public_headline": null,
- "public_text": null,
- "public_banner_asset_guids": [ ],
- "login_background_asset_guid": null,
- "current_role_level_name": null,
- "lightbox_upload_role_level": "global_content",
- "stripe_status": null,
- "custom_pricing": false,
- "watermark_format": "text",
- "watermark_opacity": 0.75,
- "watermark_scale": 1,
- "watermark_advanced_params": null,
- "enable_product_info": true,
- "enable_artwork_or_object": true,
- "enable_truncated_date_writing": false,
- "enable_face_tagging": false,
- "enable_membership_requests": true,
- "enable_sso": false,
- "sso_type": null,
- "encrypt_saml": false,
- "saml_email_attribute_name": "email",
- "hide_password_login": false,
- "stripe_product_code": "enterprise2",
- "invoicing": false,
- "minimum_usage": null,
- "stripe_interval": "year",
- "storage_tier": 0,
- "cas_server_url": null,
- "cas_login_url": null,
- "sso_groups_field": null,
- "use_path_for_sso": true,
- "sso_token": "78e8dead",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": null,
- "locked": false,
- "view_settings": null,
- "reindexing": false,
- "reindexing_started_at": null,
- "reindexing_eta": null,
- "enable_ai": false,
- "enable_rekognition": false,
- "enable_general_member_auto_tags": false,
- "auto_tag_confidence_threshold": 80,
- "enable_nsfw_detection": false,
- "omit_auto_tag_results": false,
- "auto_tag_prompt": null,
- "cai_enabled": false,
- "default_timezone": null,
- "download_filename_format": null,
- "access_request_terms": null,
- "contact_email": null,
- "contact_address": null,
- "contact_phone": null,
- "company_name": null,
- "overwrite_exif_date": false,
- "include_taggers_in_admin": false,
- "default_sort_order": "created_at-desc",
- "default_landing_page": "explore",
- "enable_transcription": true,
- "share_download_role_level": "general",
- "enable_face_training_mode": false,
- "medium_download_size": 1200,
- "sidebar_settings": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "inactivity_timeout_minutes": 1440,
- "alt_text_generation_prompt": null,
- "alt_text_generation_mode": "on",
- "rights_package_expiration_notify_days": 7,
- "toc_default_enabled": true,
- "toc_default_enable_poster_image": false,
- "enable_help_menu_link": false,
- "help_menu_link_text": null,
- "help_menu_link_url": null,
- "has_bedrock_credentials": false,
- "member_grant_ids": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015821367,
- "first_name": "Kayce",
- "last_name": "Baumbach",
- "created_at": "2026-05-28T20:08:44.199Z",
- "default_username": "keven",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kayce Baumbach",
- "initials": "K B",
- "username": null,
- "title": null,
- "user_id": 1015821367,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "can_use_cai": false,
- "support": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": null,
- "stripe_subscription_id": null,
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ],
- "has_public_uploads": false,
- "has_custom_meta_fields": true,
- "enable_download_statement": false,
- "header_background_color": "#000000",
- "header_text_color": "#ffffff",
- "header_highlight_color": "#1890ff",
- "enable_access_requests": false,
- "quick_info_settings": [
- "stats",
- "creator",
- "description",
- "usage_rights",
- "links",
- "optimization_requests",
- "restricted_access",
- "keywords",
- "gps"
], - "sidebar_items": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "banner_assets": [ ]
}, - "abilities": [
- {
- "action": [
- "index",
- "show",
- "create",
- "update",
- "destroy"
], - "subject": [
- "PersonalAccessToken"
], - "conditions": {
- "user_id": 1015821367
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "all"
], - "conditions": {
- "organization_id": 1071574618
}
}, - {
- "action": [
- "move_to_root"
], - "subject": [
- "AssetGroup"
]
}, - {
- "action": [
- "manage"
], - "subject": [
- "organization"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "DownloadAsset"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "DownloadAsset"
], - "conditions": {
- "asset": {
- "organization_id": 1071574618
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "conditions": {
- "taxonomy": {
- "organization_id": 1071574618
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "conditions": {
- "tag": {
- "organization_id": 1071574618
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Organization"
], - "conditions": {
- "id": 1071574618
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "CropPreset"
], - "conditions": {
- "organization_id": 1071574618
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "RenamePreset"
], - "conditions": {
- "organization_id": 1071574618
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Content"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "User"
], - "inverted": true
}, - {
- "action": [
- "switch_to_user"
], - "subject": [
- "User"
]
}
]
}| id | integer Example: id=1071574619 The ID of the Organization |
{- "id": 1071574619,
- "title": "Block Group",
- "domain": null,
- "slug": "block-group",
- "created_at": "2026-05-28T20:08:48.817Z",
- "updated_at": "2026-05-28T20:08:52.752Z",
- "logo_url": null,
- "large_logo_url": null,
- "watermark_url": null,
- "last_login_at": null,
- "public_headline": null,
- "public_text": null,
- "public_banner_asset_guids": [ ],
- "login_background_asset_guid": null,
- "current_role_level_name": null,
- "lightbox_upload_role_level": "global_content",
- "stripe_status": null,
- "custom_pricing": false,
- "watermark_format": "text",
- "watermark_opacity": 0.75,
- "watermark_scale": 1,
- "watermark_advanced_params": null,
- "enable_product_info": true,
- "enable_artwork_or_object": true,
- "enable_truncated_date_writing": false,
- "enable_face_tagging": false,
- "enable_membership_requests": true,
- "enable_sso": false,
- "sso_type": null,
- "encrypt_saml": false,
- "saml_email_attribute_name": "email",
- "hide_password_login": false,
- "stripe_product_code": "enterprise2",
- "invoicing": false,
- "minimum_usage": null,
- "stripe_interval": "year",
- "storage_tier": 0,
- "cas_server_url": null,
- "cas_login_url": null,
- "sso_groups_field": null,
- "use_path_for_sso": true,
- "sso_token": "f7ec7b6b",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": null,
- "locked": false,
- "view_settings": null,
- "reindexing": false,
- "reindexing_started_at": null,
- "reindexing_eta": null,
- "enable_ai": false,
- "enable_rekognition": false,
- "enable_general_member_auto_tags": false,
- "auto_tag_confidence_threshold": 80,
- "enable_nsfw_detection": false,
- "omit_auto_tag_results": false,
- "auto_tag_prompt": null,
- "cai_enabled": false,
- "default_timezone": null,
- "download_filename_format": null,
- "access_request_terms": null,
- "contact_email": null,
- "contact_address": null,
- "contact_phone": null,
- "company_name": null,
- "overwrite_exif_date": false,
- "include_taggers_in_admin": false,
- "default_sort_order": "created_at-desc",
- "default_landing_page": "explore",
- "enable_transcription": true,
- "share_download_role_level": "general",
- "enable_face_training_mode": false,
- "medium_download_size": 1200,
- "sidebar_settings": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "inactivity_timeout_minutes": 1440,
- "alt_text_generation_prompt": null,
- "alt_text_generation_mode": "on",
- "rights_package_expiration_notify_days": 7,
- "toc_default_enabled": true,
- "toc_default_enable_poster_image": false,
- "enable_help_menu_link": false,
- "help_menu_link_text": null,
- "help_menu_link_url": null,
- "has_bedrock_credentials": false,
- "member_grant_ids": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015821376,
- "first_name": "Derek",
- "last_name": "Leffler",
- "created_at": "2026-05-28T20:08:48.727Z",
- "default_username": "nilda",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Derek Leffler",
- "initials": "D L",
- "username": null,
- "title": null,
- "user_id": 1015821376,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "can_use_cai": false,
- "support": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": null,
- "stripe_subscription_id": null,
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ],
- "has_public_uploads": false,
- "has_custom_meta_fields": true,
- "enable_download_statement": false,
- "header_background_color": "#000000",
- "header_text_color": "#ffffff",
- "header_highlight_color": "#1890ff",
- "enable_access_requests": false,
- "quick_info_settings": [
- "stats",
- "creator",
- "description",
- "usage_rights",
- "links",
- "optimization_requests",
- "restricted_access",
- "keywords",
- "gps"
], - "sidebar_items": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "banner_assets": [ ]
}Allows a user with the support capability flag (or a super admin) to create a Support
membership in the given Organization. Idempotent — calling with an existing membership
returns the existing record without creating a duplicate.
| id | integer The ID of the Organization |
| id | integer The membership ID |
| role_level | string Always 'admin' for support memberships |
| support | boolean Always true for support memberships |
{- "id": 1027394887,
- "user_id": 1015821385,
- "organization_id": 1071574620,
- "invite_id": null,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:08:57.659Z",
- "updated_at": "2026-05-28T20:08:57.659Z",
- "role_level": "admin",
- "username": "cyril",
- "title": null,
- "last_login_at": null,
- "box_token": null,
- "box_token_set_at": null,
- "single_use_token": null,
- "box_user": null,
- "grid_color": null,
- "dropbox_token": null,
- "dropbox_token_set_at": null,
- "dropbox_user": null,
- "google_drive_refresh_token": null,
- "google_drive_access_token": null,
- "google_drive_connected_at": null,
- "google_drive_account": null,
- "frame_token": null,
- "frame_token_set_at": null,
- "frame_account": null,
- "lightroom_token": null,
- "lightroom_token_set_at": null,
- "lightroom_account": null,
- "lightroom_catalog_id": null,
- "created_via": null,
- "rekognition_user_id": null,
- "face_tag_id": null,
- "notify_new_membership_requests": false,
- "can_create_grants": false,
- "can_use_cai": false,
- "support": true,
- "name": "Cathi Yundt",
- "initials": "C Y",
- "avatar_url": null,
- "user_group_ids": [ ]
}Permissions define access levels for user groups to assets. They control what actions users can perform (view, download) and for which asset types (image, video, audio, other).
Returns a list of federation sharing permissions for the organization.
| id | string Permission ID |
| name | string Permission name |
| enabled | string Whether permission is active |
| image | string Access level for images |
| video | string Access level for videos |
| audio | string Access level for audio |
| other | string Access level for other files |
| watermark | string Watermark setting |
| download | string Download permission level |
[- {
- "id": 1066712181,
- "user_group_id": 1053904494,
- "asset_group_id": null,
- "user_id": 1015821394,
- "name": "Feeney, Cummerata and Gorczany",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-05-28T20:09:02.866Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053904494,
- "name": "Human Resources",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073071596,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:09:02.842Z",
- "updated_at": "2026-05-28T20:09:02.842Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [
- {
- "id": 1066712181,
- "organization_id": 1071574621,
- "user_group_id": 1053904494,
- "asset_group_id": null,
- "user_id": 1015821394,
- "name": "Feeney, Cummerata and Gorczany",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:09:02.866Z",
- "updated_at": "2026-05-28T20:09:02.866Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015821394,
- "first_name": "Crista",
- "last_name": "Wisozk",
- "created_at": "2026-05-28T20:08:58.296Z",
- "default_username": "susann_kling",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Crista Wisozk",
- "initials": "C W",
- "username": null,
- "title": null,
- "user_id": 1015821394,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073071596,
- "created_at": "2026-05-28T20:09:02.856Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Human Resources Storage",
- "Group Uploads"
], - "parent_id": 1073071595,
- "ancestor_ids": [
- 1073071595
], - "visible_assets_count": null,
- "path_slugs": [
- "human-resources-storage",
- "group-uploads"
], - "asset_group_id": 1073071596,
- "has_workflow_steps": false,
- "contribution_id": 1025837168,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821394,
- "first_name": "Crista",
- "last_name": "Wisozk",
- "created_at": "2026-05-28T20:08:58.296Z",
- "default_username": "susann_kling",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Crista Wisozk",
- "initials": "C W",
- "username": null,
- "title": null,
- "user_id": 1015821394,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904494,
- "name": "Human Resources",
- "description": null
}, - "editable": true
}
}
}
]Create a new permission configuration.
Access Levels:
none - No accessview - View onlydownload_small - Download small sizedownload_large - Download large sizedownload_original - Download originalobject |
| id | string Created Permission ID |
{- "permission": {
- "name": "string",
- "enabled": true,
- "image": "string",
- "video": "string",
- "audio": "string",
- "other": "string",
- "watermark": true,
- "download": "string",
- "federated_organization_id": 0
}
}{- "id": 1066712208,
- "user_group_id": null,
- "asset_group_id": null,
- "user_id": null,
- "name": "New Permission",
- "image": "download_large",
- "video": "view",
- "audio": null,
- "other": null,
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-05-28T20:09:12.042Z",
- "inherited": null,
- "federated_organization_id": null
}Get details of a specific permission.
| id required | integer |
{- "id": 1066712194,
- "user_group_id": 1053904497,
- "asset_group_id": null,
- "user_id": 1015821403,
- "name": "Jast, Ankunding and Maggio",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-05-28T20:09:07.560Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053904497,
- "name": "Environmental Services",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073071627,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:09:07.536Z",
- "updated_at": "2026-05-28T20:09:07.536Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [
- {
- "id": 1066712194,
- "organization_id": 1071574622,
- "user_group_id": 1053904497,
- "asset_group_id": null,
- "user_id": 1015821403,
- "name": "Jast, Ankunding and Maggio",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:09:07.560Z",
- "updated_at": "2026-05-28T20:09:07.560Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015821403,
- "first_name": "Dorla",
- "last_name": "Konopelski",
- "created_at": "2026-05-28T20:09:02.911Z",
- "default_username": "michal_corkery",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dorla Konopelski",
- "initials": "D K",
- "username": null,
- "title": null,
- "user_id": 1015821403,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073071627,
- "created_at": "2026-05-28T20:09:07.551Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Environmental Services Storage",
- "Group Uploads"
], - "parent_id": 1073071626,
- "ancestor_ids": [
- 1073071626
], - "visible_assets_count": null,
- "path_slugs": [
- "environmental-services-storage",
- "group-uploads"
], - "asset_group_id": 1073071627,
- "has_workflow_steps": false,
- "contribution_id": 1025837185,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821403,
- "first_name": "Dorla",
- "last_name": "Konopelski",
- "created_at": "2026-05-28T20:09:02.911Z",
- "default_username": "michal_corkery",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dorla Konopelski",
- "initials": "D K",
- "username": null,
- "title": null,
- "user_id": 1015821403,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904497,
- "name": "Environmental Services",
- "description": null
}, - "editable": true
}
}
}Update an existing permission configuration.
| id required | integer |
object |
{- "permission": {
- "name": "string",
- "enabled": true,
- "image": "string",
- "video": "string",
- "audio": "string",
- "other": "string",
- "watermark": true
}
}{- "id": 1066712221,
- "user_group_id": 1053904503,
- "asset_group_id": null,
- "user_id": 1015821421,
- "name": "Updated Permission Name",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-05-28T20:09:16.723Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053904503,
- "name": "Museums and Institutions",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073071689,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:09:16.696Z",
- "updated_at": "2026-05-28T20:09:16.696Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [
- {
- "id": 1066712221,
- "organization_id": 1071574624,
- "user_group_id": 1053904503,
- "asset_group_id": null,
- "user_id": 1015821421,
- "name": "Updated Permission Name",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:09:16.723Z",
- "updated_at": "2026-05-28T20:09:16.734Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015821421,
- "first_name": "Marco",
- "last_name": "O'Keefe",
- "created_at": "2026-05-28T20:09:12.051Z",
- "default_username": "terisa_dickinson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco O'Keefe",
- "initials": "M O",
- "username": null,
- "title": null,
- "user_id": 1015821421,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073071689,
- "created_at": "2026-05-28T20:09:16.713Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Museums and Institutions Storage",
- "Group Uploads"
], - "parent_id": 1073071688,
- "ancestor_ids": [
- 1073071688
], - "visible_assets_count": null,
- "path_slugs": [
- "museums-and-institutions-storage",
- "group-uploads"
], - "asset_group_id": 1073071689,
- "has_workflow_steps": false,
- "contribution_id": 1025837219,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821421,
- "first_name": "Marco",
- "last_name": "O'Keefe",
- "created_at": "2026-05-28T20:09:12.051Z",
- "default_username": "terisa_dickinson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco O'Keefe",
- "initials": "M O",
- "username": null,
- "title": null,
- "user_id": 1015821421,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904503,
- "name": "Museums and Institutions",
- "description": null
}, - "editable": true
}
}
}Personal Access Tokens allow users to authenticate API requests without using their session credentials. Tokens can be created for integrations like Lightroom.
Tokens can be revoked at staff discretion. Disabled tokens will fail authentication and the response will include X-PAT-Disabled: 1 and X-PAT-Disabled-Note headers indicating the reason.
Returns all personal access tokens for the current user.
| id | string Token ID |
| name | string Token name |
| last_used_at | string Last usage timestamp |
[- {
- "id": 909709018,
- "scopes": null,
- "note": null,
- "created_at": "2026-05-28T20:09:25.997Z",
- "updated_at": "2026-05-28T20:09:25.997Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "membership_id": null,
- "scope_list": [ ]
}, - {
- "id": 909709017,
- "scopes": null,
- "note": null,
- "created_at": "2026-05-28T20:09:25.996Z",
- "updated_at": "2026-05-28T20:09:25.996Z",
- "last_used_at": "2026-05-28T20:09:26.008Z",
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "membership_id": null,
- "scope_list": [ ]
}
]Create a new personal access token. The token value is only returned once upon creation.
object |
| token | string The token value (only shown once) |
{- "personal_access_token": {
- "name": "string"
}
}{- "id": 909709023,
- "scopes": null,
- "note": null,
- "created_at": "2026-05-28T20:09:35.058Z",
- "updated_at": "2026-05-28T20:09:35.058Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "membership_id": null,
- "scope_list": [ ],
- "token": "b1a3eed3da67b1cf4b6d593e948504d6"
}Get details of a specific personal access token.
| id required | integer |
{- "id": 909709020,
- "scopes": null,
- "note": null,
- "created_at": "2026-05-28T20:09:30.452Z",
- "updated_at": "2026-05-28T20:09:30.452Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "membership_id": null,
- "scope_list": [ ]
}Rights Packages define usage rights and licensing terms that can be assigned to assets. Each package has a rights class (e.g., Royalty Free, Rights Managed) and can include contracts.
Returns all rights packages for the organization.
| total-entries | integer |
| id | string Rights Package ID |
| rights_class | string Rights classification |
| enabled | string Whether package is active |
[- {
- "id": 957291455,
- "name": null,
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": null,
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:44.000Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291454,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.721Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291453,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.719Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291452,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.717Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291451,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.713Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291450,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.710Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291449,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.708Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291448,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.705Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957291447,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:39.703Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821475,
- "name": "Felton McLaughlin",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}
]Create a new rights package for the organization.
object |
{- "rights_package": {
- "name": "string",
- "rights_class": "owned",
- "enabled": true
}
}{- "id": 957291474,
- "organization_id": 1071574632,
- "user_id": 1015821493,
- "name": "Editorial Use",
- "description": null,
- "rights_class": "editorial",
- "summary": null,
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "meta_field_text": null,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "expires": false,
- "expires_at": null,
- "created_at": "2026-05-28T20:09:53.065Z",
- "updated_at": "2026-05-28T20:09:53.065Z",
- "watermark": false,
- "personalize": false,
- "other_party_name": null,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "contract_asset_id": null,
- "default": false,
- "block_level": 0,
- "expiration_notification_sent_at": null
}Get details of a specific rights package.
| id required | integer |
{- "id": 957291464,
- "name": null,
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": null,
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:09:48.481Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}Update a rights package's settings.
| id required | integer |
object |
{- "rights_package": {
- "name": "string",
- "rights_class": "string",
- "enabled": true
}
}{- "organization_id": 1071574633,
- "enabled": false,
- "id": 957291483,
- "user_id": 1015821502,
- "name": null,
- "description": null,
- "rights_class": "owned",
- "summary": null,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "meta_field_text": null,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "expires": false,
- "expires_at": null,
- "created_at": "2026-05-28T20:09:57.671Z",
- "updated_at": "2026-05-28T20:09:57.681Z",
- "watermark": false,
- "personalize": false,
- "other_party_name": null,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "contract_asset_id": null,
- "default": false,
- "block_level": 0,
- "expiration_notification_sent_at": null
}Find multiple rights packages by their IDs at once.
| ids required | Array of integers Array of rights package IDs |
[- {
- "id": 957291492,
- "name": null,
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": null,
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:10:02.196Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015821511,
- "name": "Emmanuel Oberbrunner",
- "avatar_url": null
}, - "editable": true
}
]Search Queries allow users to save and reuse complex search filters.
Saved searches can be quickly accessed and shared.
The sql field uses Elasticsearch SQL syntax for the WHERE clause.
Returns all saved search queries for the current user in the current organization.
| id | string Search Query ID |
| name | string Search name |
| description | string Search description |
| sql | string SQL WHERE clause (Elasticsearch SQL syntax) |
| json_logic | string JSON Logic representation of the query |
| user_id | string Owner user ID |
| created_at | string Creation timestamp |
| updated_at | string Last update timestamp |
[- {
- "id": 1,
- "user_id": 1015821529,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-05-28T20:10:11.425Z",
- "updated_at": "2026-05-28T20:10:11.425Z"
}
]Save a new search query for future use.
The sql field should contain an Elasticsearch SQL WHERE clause.
object |
{- "search_query": {
- "name": "string",
- "description": "string",
- "sql": "string"
}
}{- "id": 4,
- "user_id": 1015821547,
- "json_logic": null,
- "name": "New Saved Search",
- "description": "Find pending assets",
- "sql": "aasm_state = 'pending'",
- "created_at": "2026-05-28T20:10:20.616Z",
- "updated_at": "2026-05-28T20:10:20.616Z"
}Get details of a specific saved search query.
| id required | integer |
{- "id": 2,
- "user_id": 1015821538,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-05-28T20:10:16.023Z",
- "updated_at": "2026-05-28T20:10:16.023Z"
}Update a saved search query's name or description. Note: The SQL query cannot be changed after creation.
| id required | integer |
object |
{- "search_query": {
- "name": "string",
- "description": "string"
}
}{- "id": 5,
- "user_id": 1015821556,
- "json_logic": null,
- "name": "Updated Search Name",
- "description": "Updated description",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-05-28T20:10:25.147Z",
- "updated_at": "2026-05-28T20:10:25.167Z"
}| publish_user_id | integer Filter by Publish User ID; for Lightroom Publish Connections |
| publish_type | string Value: "lightroom" Filter by Publish Type |
[- {
- "id": 1073072477,
- "created_at": "2026-05-28T20:11:25.270Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 1073072476,
- "ancestor_ids": [
- 1073072476
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 1073072477,
- "has_workflow_steps": false,
- "contribution_id": 1025837657,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821676,
- "first_name": "Jeromy",
- "last_name": "Bode",
- "created_at": "2026-05-28T20:11:25.056Z",
- "default_username": "elmerlebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeromy Bode",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015821676,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072478,
- "created_at": "2026-05-28T20:11:25.290Z",
- "name": "Lightbox Uploads Storage",
- "description": null,
- "slug": "lightbox-uploads-storage",
- "organizer": true,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "path_names": [
- "Lightbox Uploads Storage"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage"
], - "asset_group_id": 1073072478,
- "has_workflow_steps": false,
- "contribution_id": null,
- "enable_contribution": false,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821676,
- "first_name": "Jeromy",
- "last_name": "Bode",
- "created_at": "2026-05-28T20:11:25.056Z",
- "default_username": "elmerlebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeromy Bode",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015821676,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072481,
- "created_at": "2026-05-28T20:11:25.402Z",
- "description": null,
- "slug": "shelby_hilll-leannon-dibbert-test",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "shelby_hilll-leannon-dibbert-test"
], - "asset_group_id": 1073072481,
- "has_workflow_steps": false,
- "contribution_id": 1025837659,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821676,
- "first_name": "Jeromy",
- "last_name": "Bode",
- "created_at": "2026-05-28T20:11:25.056Z",
- "default_username": "elmerlebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeromy Bode",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015821676,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072482,
- "created_at": "2026-05-28T20:11:25.420Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072481,
- "ancestor_ids": [
- 1073072478,
- 1073072481
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "shelby_hilll-leannon-dibbert-test",
- "my-first-lightbox"
], - "asset_group_id": 1073072482,
- "has_workflow_steps": false,
- "contribution_id": 1025837660,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821676,
- "first_name": "Jeromy",
- "last_name": "Bode",
- "created_at": "2026-05-28T20:11:25.056Z",
- "default_username": "elmerlebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeromy Bode",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015821676,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072476,
- "created_at": "2026-05-28T20:11:25.261Z",
- "name": "Uploads",
- "description": null,
- "slug": "uploads",
- "organizer": true,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "path_names": [
- "Uploads"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "uploads"
], - "asset_group_id": 1073072476,
- "has_workflow_steps": false,
- "contribution_id": null,
- "enable_contribution": false,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821676,
- "first_name": "Jeromy",
- "last_name": "Bode",
- "created_at": "2026-05-28T20:11:25.056Z",
- "default_username": "elmerlebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeromy Bode",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 1015821676,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072486,
- "created_at": "2026-05-28T20:11:26.228Z",
- "description": null,
- "slug": "tester-c0bd44f7-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-c0bd44f7-mediagraph-io"
], - "asset_group_id": 1073072486,
- "has_workflow_steps": false,
- "contribution_id": 1025837662,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821677,
- "first_name": "Kozey Inc Test",
- "last_name": "General Member",
- "created_at": "2026-05-28T20:11:26.107Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test General Member",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821677,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072487,
- "created_at": "2026-05-28T20:11:26.250Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-3",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072486,
- "ancestor_ids": [
- 1073072478,
- 1073072486
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-c0bd44f7-mediagraph-io",
- "my-first-lightbox-3"
], - "asset_group_id": 1073072487,
- "has_workflow_steps": false,
- "contribution_id": 1025837663,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821677,
- "first_name": "Kozey Inc Test",
- "last_name": "General Member",
- "created_at": "2026-05-28T20:11:26.107Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test General Member",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821677,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072491,
- "created_at": "2026-05-28T20:11:27.033Z",
- "description": null,
- "slug": "tester-cc1b1419-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-cc1b1419-mediagraph-io"
], - "asset_group_id": 1073072491,
- "has_workflow_steps": false,
- "contribution_id": 1025837665,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821678,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-05-28T20:11:26.902Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Content Manager",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821678,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072492,
- "created_at": "2026-05-28T20:11:27.066Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-4",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072491,
- "ancestor_ids": [
- 1073072478,
- 1073072491
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-cc1b1419-mediagraph-io",
- "my-first-lightbox-4"
], - "asset_group_id": 1073072492,
- "has_workflow_steps": false,
- "contribution_id": 1025837666,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821678,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-05-28T20:11:26.902Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Content Manager",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821678,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072496,
- "created_at": "2026-05-28T20:11:27.879Z",
- "description": null,
- "slug": "tester-4a3caa78-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-4a3caa78-mediagraph-io"
], - "asset_group_id": 1073072496,
- "has_workflow_steps": false,
- "contribution_id": 1025837668,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821679,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-05-28T20:11:27.765Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Library Manager",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821679,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072497,
- "created_at": "2026-05-28T20:11:27.895Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-5",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072496,
- "ancestor_ids": [
- 1073072478,
- 1073072496
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-4a3caa78-mediagraph-io",
- "my-first-lightbox-5"
], - "asset_group_id": 1073072497,
- "has_workflow_steps": false,
- "contribution_id": 1025837669,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821679,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-05-28T20:11:27.765Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Library Manager",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821679,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072501,
- "created_at": "2026-05-28T20:11:28.720Z",
- "description": null,
- "slug": "tester-4b55bd98-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-4b55bd98-mediagraph-io"
], - "asset_group_id": 1073072501,
- "has_workflow_steps": false,
- "contribution_id": 1025837671,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821680,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Tagger",
- "created_at": "2026-05-28T20:11:28.603Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Tagger",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821680,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072502,
- "created_at": "2026-05-28T20:11:28.745Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-6",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072501,
- "ancestor_ids": [
- 1073072478,
- 1073072501
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-4b55bd98-mediagraph-io",
- "my-first-lightbox-6"
], - "asset_group_id": 1073072502,
- "has_workflow_steps": false,
- "contribution_id": 1025837672,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821680,
- "first_name": "Kozey Inc Test",
- "last_name": "Global Tagger",
- "created_at": "2026-05-28T20:11:28.603Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kozey Inc Test Global Tagger",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015821680,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072506,
- "created_at": "2026-05-28T20:11:30.053Z",
- "description": null,
- "slug": "felton_durgan-crooks-example",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073072478,
- "ancestor_ids": [
- 1073072478
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "felton_durgan-crooks-example"
], - "asset_group_id": 1073072506,
- "has_workflow_steps": false,
- "contribution_id": 1025837674,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821685,
- "first_name": "Treena",
- "last_name": "Gislason",
- "created_at": "2026-05-28T20:11:29.931Z",
- "default_username": "daniagreenfelder",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Treena Gislason",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015821685,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072507,
- "created_at": "2026-05-28T20:11:30.074Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-7",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073072506,
- "ancestor_ids": [
- 1073072478,
- 1073072506
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "felton_durgan-crooks-example",
- "my-first-lightbox-7"
], - "asset_group_id": 1073072507,
- "has_workflow_steps": false,
- "contribution_id": 1025837675,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821685,
- "first_name": "Treena",
- "last_name": "Gislason",
- "created_at": "2026-05-28T20:11:29.931Z",
- "default_username": "daniagreenfelder",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Treena Gislason",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015821685,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072510,
- "created_at": "2026-05-28T20:11:30.781Z",
- "name": "Paul Klee233",
- "description": "Natus laborum aliquam. Alias et quidem. Repellendus ut ut.",
- "slug": "miscarriage-conglomerate233",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Paul Klee233"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "miscarriage-conglomerate233"
], - "asset_group_id": 1073072510,
- "has_workflow_steps": false,
- "contribution_id": 1025837676,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821685,
- "first_name": "Treena",
- "last_name": "Gislason",
- "created_at": "2026-05-28T20:11:29.931Z",
- "default_username": "daniagreenfelder",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Treena Gislason",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015821685,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}
]object |
{- "storage_folder": {
- "name": "Test Folder",
- "description": "string",
- "parent_id": 1073072725,
- "organizer": true,
- "publish_type": "l",
- "publish_user_name": "string"
}
}{- "id": 1073072726,
- "created_at": "2026-05-28T20:12:05.409Z",
- "name": "Test Folder",
- "description": null,
- "slug": "test-folder",
- "organizer": null,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Dali243",
- "Test Folder"
], - "parent_id": 1073072725,
- "ancestor_ids": [
- 1073072725
], - "visible_assets_count": null,
- "path_slugs": [
- "design_dictate243",
- "test-folder"
], - "asset_group_id": 1073072726,
- "has_workflow_steps": false,
- "contribution_id": 1025837805,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821737,
- "first_name": "Timothy",
- "last_name": "Funk",
- "created_at": "2026-05-28T20:11:59.990Z",
- "default_username": "hershel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Timothy Funk",
- "initials": "T F",
- "username": null,
- "title": null,
- "user_id": 1015821737,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ],
- "block_destroy": false,
- "total_file_size": 0,
- "links": [ ],
- "webhooks": [ ]
}For tree traversal. All children of the Parent folder specified by parent_id (or blank for root level) will be returned.
| parent_id | integer ID of parent folder, blank for root level |
| updated_since | string Timestamp filter for folders updated at or after this time. When |
| total-entries | integer |
[- {
- "id": 1073072551,
- "created_at": "2026-05-28T20:11:37.123Z",
- "name": "Botticelli235",
- "description": "Provident delectus et. Totam autem et. Officiis assumenda esse.",
- "slug": "judge-academy235",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Botticelli235"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "judge-academy235"
], - "asset_group_id": 1073072551,
- "has_workflow_steps": false,
- "contribution_id": 1025837700,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821696,
- "first_name": "Dannie",
- "last_name": "Reynolds",
- "created_at": "2026-05-28T20:11:36.267Z",
- "default_username": "diamondschumm",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dannie Reynolds",
- "initials": "D R",
- "username": null,
- "title": null,
- "user_id": 1015821696,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072513,
- "created_at": "2026-05-28T20:11:31.157Z",
- "name": "Lightbox Uploads Storage",
- "description": null,
- "slug": "lightbox-uploads-storage",
- "organizer": true,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "path_names": [
- "Lightbox Uploads Storage"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage"
], - "asset_group_id": 1073072513,
- "has_workflow_steps": false,
- "contribution_id": null,
- "enable_contribution": false,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821686,
- "first_name": "Eliza",
- "last_name": "Bins",
- "created_at": "2026-05-28T20:11:30.927Z",
- "default_username": "alisiahills",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eliza Bins",
- "initials": "E B",
- "username": null,
- "title": null,
- "user_id": 1015821686,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072545,
- "created_at": "2026-05-28T20:11:36.255Z",
- "name": "Matisse234",
- "description": "Earum non enim. Autem odit sint. Corporis aliquid dolores.",
- "slug": "notebook-message234",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Matisse234"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "notebook-message234"
], - "asset_group_id": 1073072545,
- "has_workflow_steps": false,
- "contribution_id": 1025837696,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821695,
- "first_name": "Jae",
- "last_name": "Dooley",
- "created_at": "2026-05-28T20:11:35.428Z",
- "default_username": "malcommarvin",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jae Dooley",
- "initials": "J D",
- "username": null,
- "title": null,
- "user_id": 1015821695,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - {
- "id": 1073072511,
- "created_at": "2026-05-28T20:11:31.128Z",
- "name": "Uploads",
- "description": null,
- "slug": "uploads",
- "organizer": true,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "path_names": [
- "Uploads"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "uploads"
], - "asset_group_id": 1073072511,
- "has_workflow_steps": false,
- "contribution_id": null,
- "enable_contribution": false,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821686,
- "first_name": "Eliza",
- "last_name": "Bins",
- "created_at": "2026-05-28T20:11:30.927Z",
- "default_username": "alisiahills",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eliza Bins",
- "initials": "E B",
- "username": null,
- "title": null,
- "user_id": 1015821686,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}
]| id required | integer |
{- "id": 1073072690,
- "created_at": "2026-05-28T20:11:59.948Z",
- "name": "Cassatt242",
- "description": "Natus at perferendis. A provident doloremque. Aut et maxime.",
- "slug": "wear-onion242",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Cassatt242"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "wear-onion242"
], - "asset_group_id": 1073072690,
- "has_workflow_steps": false,
- "contribution_id": 1025837784,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821736,
- "first_name": "Beula",
- "last_name": "Torp",
- "created_at": "2026-05-28T20:11:59.207Z",
- "default_username": "francis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Beula Torp",
- "initials": "B T",
- "username": null,
- "title": null,
- "user_id": 1015821736,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ],
- "block_destroy": false,
- "total_file_size": 0,
- "links": [ ],
- "webhooks": [ ]
}| id required | integer |
object |
{- "storage_folder": {
- "name": "Test Folder Edit",
- "description": "string",
- "parent_id": 0,
- "organizer": true,
- "lightroom_publish_service_id": "lr-catalog-id"
}
}{- "id": 1073072761,
- "created_at": "2026-05-28T20:12:10.693Z",
- "name": "Test Folder Edit",
- "description": "Incidunt deserunt atque. Voluptas consectetur natus. Quibusdam consequatur quaerat.",
- "slug": "test-folder-edit",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Test Folder Edit"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "test-folder-edit"
], - "asset_group_id": 1073072761,
- "has_workflow_steps": false,
- "contribution_id": 1025837825,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": "lr-catalog-id",
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015821756,
- "first_name": "Jonah",
- "last_name": "Streich",
- "created_at": "2026-05-28T20:12:09.925Z",
- "default_username": "deloiselebsack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jonah Streich",
- "initials": "J S",
- "username": null,
- "title": null,
- "user_id": 1015821756,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ],
- "block_destroy": false,
- "total_file_size": 0,
- "links": [ ],
- "webhooks": [ ]
}Taggings represent the association between tags and assets. They can also be associated with detected faces for person tagging.
Get details of a specific tagging.
| id required | integer |
| id | string Tagging ID |
| asset_id | string Associated asset ID |
| tag_id | string Associated tag ID |
{- "tagged_by": {
- "id": 1015821767,
- "first_name": "Jake",
- "last_name": "Marks",
- "created_at": "2026-05-28T20:12:16.559Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:12:16.558Z",
- "default_username": "polly",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Jake Marks",
- "initials": "J M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821767
}, - "taxonomy_path_names": [ ]
}[- {
- "id": 712306475,
- "organization_id": 1071574670,
- "name": "nobis",
- "description": null,
- "user_id": 1015821901,
- "created_at": "2026-05-28T20:13:21.350Z",
- "updated_at": "2026-05-28T20:13:21.350Z",
- "user": {
- "id": 1015821901,
- "first_name": "Jacklyn",
- "last_name": "Walsh",
- "created_at": "2026-05-28T20:13:21.259Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:21.257Z",
- "default_username": "darryl",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Jacklyn Walsh",
- "initials": "J W",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821901
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712306474,
- "organization_id": 1071574670,
- "name": "quisquam",
- "description": null,
- "user_id": 1015821900,
- "created_at": "2026-05-28T20:13:21.253Z",
- "updated_at": "2026-05-28T20:13:21.253Z",
- "user": {
- "id": 1015821900,
- "first_name": "Fidel",
- "last_name": "Pfannerstill",
- "created_at": "2026-05-28T20:13:21.163Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:21.163Z",
- "default_username": "neoma",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Fidel Pfannerstill",
- "initials": "F P",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821900
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712306473,
- "organization_id": 1071574670,
- "name": "a",
- "description": null,
- "user_id": 1015821899,
- "created_at": "2026-05-28T20:13:21.159Z",
- "updated_at": "2026-05-28T20:13:21.159Z",
- "user": {
- "id": 1015821899,
- "first_name": "Jann",
- "last_name": "Bruen",
- "created_at": "2026-05-28T20:13:21.068Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:21.067Z",
- "default_username": "frederickbraun",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Jann Bruen",
- "initials": "J B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821899
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712306472,
- "organization_id": 1071574670,
- "name": "Global Tag Tree",
- "description": null,
- "user_id": 1015821890,
- "created_at": "2026-05-28T20:13:16.607Z",
- "updated_at": "2026-05-28T20:13:16.607Z",
- "user": {
- "id": 1015821890,
- "first_name": "Kelly",
- "last_name": "Armstrong",
- "created_at": "2026-05-28T20:13:16.295Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:16.294Z",
- "default_username": "bellaweissnat",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Kelly Armstrong",
- "initials": "K A",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821890
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}
]object |
{- "taxonomy": {
- "name": "Main Taxonomy",
- "description": "string"
}
}{- "id": 712306480,
- "organization_id": 1071574672,
- "name": "Main Taxonomy",
- "description": null,
- "user_id": 1015821912,
- "created_at": "2026-05-28T20:13:31.512Z",
- "updated_at": "2026-05-28T20:13:31.512Z",
- "user": {
- "id": 1015821912,
- "first_name": "Donald",
- "last_name": "Bernhard",
- "created_at": "2026-05-28T20:13:26.501Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:26.500Z",
- "default_username": "kraig_walter",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Donald Bernhard",
- "initials": "D B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821912
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
{- "id": 712306477,
- "organization_id": 1071574671,
- "name": "non",
- "description": null,
- "user_id": 1015821911,
- "created_at": "2026-05-28T20:13:26.465Z",
- "updated_at": "2026-05-28T20:13:26.465Z",
- "user": {
- "id": 1015821911,
- "first_name": "Deandre",
- "last_name": "Moore",
- "created_at": "2026-05-28T20:13:26.372Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:26.371Z",
- "default_username": "celeste",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Deandre Moore",
- "initials": "D M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821911
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
object |
{- "taxonomy": {
- "name": "Main Taxonomy Edit",
- "description": "string"
}
}{- "id": 712306482,
- "organization_id": 1071574673,
- "name": "Main Taxonomy Edit",
- "description": null,
- "user_id": 1015821931,
- "created_at": "2026-05-28T20:13:36.575Z",
- "updated_at": "2026-05-28T20:13:36.586Z",
- "user": {
- "id": 1015821931,
- "first_name": "Maryrose",
- "last_name": "Dooley",
- "created_at": "2026-05-28T20:13:36.486Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:13:36.485Z",
- "default_username": "millicent",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Maryrose Dooley",
- "initials": "M D",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015821931
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}Create the Upload container within the Contribution that will receive the uploaded Assets.
object | |
| contribution_id | integer Contribution ID these uploaded Assets will go into. |
| guid | string The Upload GUID to be used when uploading Assets |
{- "upload": {
- "name": "string",
- "note": "string",
- "default_rights_package_id": 0
}, - "contribution_id": 0
}{- "id": 903046260,
- "user_id": 1015822018,
- "guid": "9fd3b728",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-05-28T20:14:20.396Z",
- "updated_at": "2026-05-28T20:14:20.396Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025838234,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015822018,
- "first_name": "Rosella",
- "last_name": "Spinka",
- "created_at": "2026-05-28T20:14:15.403Z",
- "default_username": "renatokozey",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Rosella Spinka",
- "initials": "R S",
- "username": null,
- "title": null,
- "user_id": 1015822018,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "aws_key": "AKIATBO5XF4ER7OYZDV6",
- "bucket": "tandemvault-asset-uploads-test",
- "contribution": {
- "enabled": true,
- "id": 1025838234,
- "name": "qui",
- "text": "Corporis a optio. Aliquam autem molestiae. Et minus et.",
- "featured": true,
- "slug": "perception-guess",
- "storage_folder_id": 1073073491,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": null,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:14:20.380Z",
- "updated_at": "2026-05-28T20:14:20.380Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "link",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025838234-qui",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073073491,
- "created_at": "2026-05-28T20:14:20.372Z",
- "name": "Klimt248",
- "description": "Sunt ut quaerat. Libero placeat voluptatem. Similique et reiciendis.",
- "slug": "general_push248",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Klimt248"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "general_push248"
], - "asset_group_id": 1073073491,
- "has_workflow_steps": false,
- "contribution_id": 1025838233,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822027,
- "first_name": "Elnora",
- "last_name": "Harvey",
- "created_at": "2026-05-28T20:14:19.604Z",
- "default_username": "chungvolkman",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Elnora Harvey",
- "initials": "E H",
- "username": null,
- "title": null,
- "user_id": 1015822027,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "ftp_password": "bb15c5a8",
- "ftp_url": "sftp://bradford.labadie%40steuber-daugherty.example:bb15c5a8@//1071574681/7d42efe2"
}Prepare the Asset to be uploaded to S3. Use the signed_upload_url response attribute to then upload via PUT. E.g:
curl -v --upload-file path/to/file.jpg "{signed_upload_url}". Then use the /set_uploaded endpoint once the data upload to S3 is complete.
Note that the signed_upload_url is only valid for 1 hour.
| guid required | string Upload GUID created in the prior step. |
object |
| signed_upload_url | string Use this URL to PUT the file data on S3. |
{- "asset": {
- "filename": "test.jpg",
- "file_size": 10000,
- "path": "",
- "created_via": "api",
- "created_via_id": "external-file-id"
}
}{- "id": 1060943194,
- "filename": "test.jpg",
- "file_size": 10000,
- "guid": "577f990e-8b29-4524-a46e-e16f2cef62cf",
- "short_guid": "577f990e",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "thumb_url": null,
- "grid_url": null,
- "small_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": false,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": false,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1071574682,
- "has_alpha": false,
- "downloadable": true,
- "original_downloadable": true,
- "editable": true,
- "manageable": true,
- "rights_editable": true,
- "rights_manageable": true,
- "taggable": true,
- "description_editable": true,
- "has_document_url": false,
- "has_pdf_url": false,
- "rating": null,
- "path": "",
- "catalogue_number": null,
- "upload_finished_at": null,
- "upload_started_at": null,
- "processing_started_at": null,
- "upload_id": 903046261,
- "user_id": 1015822028,
- "aasm_state": "pending",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-05-28T20:14:25.446Z",
- "updated_at": "2026-05-28T20:14:25.537Z",
- "s3_upload_id": null,
- "s3_upload_key": "1071574682/bf2ec5a9/577f990e-8b29-4524-a46e-e16f2cef62cf-test.jpg",
- "time_to_process": null,
- "captured_at": null,
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": "api",
- "created_via_id": "external-file-id",
- "vector": false,
- "rights_package_id": null,
- "submitted_at": null,
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": null,
- "auto_tags_retrieved_at": null,
- "rekognition_faces_requested_at": null,
- "rekognition_faces_retrieved_at": null,
- "face_indexing_state": "pending",
- "faces_searched_at": null,
- "bedrock_retrieved_at": null,
- "custom_meta_values": [ ],
- "user": {
- "id": 1015822028,
- "first_name": "Sofia",
- "last_name": "Emard",
- "created_at": "2026-05-28T20:14:20.435Z",
- "default_username": "tonisha_bailey",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sofia Emard",
- "initials": "S E",
- "username": null,
- "title": null,
- "user_id": 1015822028,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "creator_tag": null,
- "storage_folder_path": "figure_widen249",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "preserved_filename": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 0,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "permalink_url": null,
- "full_url": null,
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073073526,
- "created_at": "2026-05-28T20:14:25.422Z",
- "name": "Seurat249",
- "description": "Aliquid tempore autem. Inventore error nemo. Aliquam sit ab.",
- "slug": "figure_widen249",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat249"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "figure_widen249"
], - "asset_group_id": 1073073526,
- "has_workflow_steps": false,
- "contribution_id": 1025838254,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822038,
- "first_name": "Gabriel",
- "last_name": "Pouros",
- "created_at": "2026-05-28T20:14:24.708Z",
- "default_username": "rosita",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gabriel Pouros",
- "initials": "G P",
- "username": null,
- "title": null,
- "user_id": 1015822038,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957291870,
- "name": "Owned by Organization",
- "rights_class": "owned",
- "rights_class_name": "Owned by Organization",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "rights_class_description": "e.g. employee-created image done as part of job description, or commissioned work done under work for hire contract",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.647Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291871,
- "name": "Unlimited Use",
- "rights_class": "unlimited",
- "rights_class_name": "Unlimited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "rights_class_description": "org has unlimited use of the object, but does not have copyright ownership. E.g. commissioned work acquired under a contract that specifies unlimited use, or submissions that are specified as unlimited use",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.650Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291872,
- "name": "Limited Use",
- "rights_class": "some",
- "rights_class_name": "Limited Use",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has some rights to the object as spelled out in a rights agreement",
- "rights_class_description": "Org has some rights to the object as spelled out in a rights agreement",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.653Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291873,
- "name": "Library Rights Only",
- "rights_class": "library",
- "rights_class_name": "Library Rights Only",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "rights_class_description": "Org has the right to store the object in our library, but no further rights are secured. E.g. images submitted to account for informational purposes.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.656Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291874,
- "name": "No Rights",
- "rights_class": "none",
- "rights_class_name": "No Rights",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "rights_class_description": "Company has no rights. E.g. A competitor’s product brochure or advertisements",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.659Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291875,
- "name": "Rights Unknown (Haven’t Searched)",
- "rights_class": "unknown_no_search",
- "rights_class_name": "Rights Unknown (Haven’t Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "rights_class_description": "This is a default unknown setting that just indicates that no rights tags have been applied.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.661Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291876,
- "name": "Rights Unknown (Have Searched)",
- "rights_class": "unknown_searched",
- "rights_class_name": "Rights Unknown (Have Searched)",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "rights_class_description": "This helps to track whether it’s likely that rights can even be discovered definitively.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.663Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}, - {
- "id": 957291877,
- "name": "Unassigned",
- "rights_class": "unassigned",
- "rights_class_name": "Unassigned",
- "other_party_name": null,
- "expires": false,
- "expires_at": null,
- "visible_assets_count": null,
- "meta_field_text": null,
- "summary": null,
- "description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "rights_class_description": "This is a Rights Status placeholder for a Rights Package that does not yet have an assigned status.",
- "enabled": true,
- "enable_long_form": false,
- "long_form_url": null,
- "long_form": null,
- "replace_meta_field": false,
- "replace_empty_meta_field": false,
- "reusable": true,
- "allow_contract_upload": null,
- "allow_model_release_upload": null,
- "created_at": "2026-05-28T20:14:20.665Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "editable": true
}
], - "upload": {
- "id": 903046261,
- "user_id": 1015822028,
- "guid": "bf2ec5a9",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:14:25.431Z",
- "updated_at": "2026-05-28T20:14:25.431Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025838255,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015822028,
- "first_name": "Sofia",
- "last_name": "Emard",
- "created_at": "2026-05-28T20:14:20.435Z",
- "default_username": "tonisha_bailey",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sofia Emard",
- "initials": "S E",
- "username": null,
- "title": null,
- "user_id": 1015822028,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "collective_work_ids": [ ]
}(Optional) Call once all Assets have been uploaded. Will submit each Asset in background.
| id required | integer The Upload ID |
{- "id": 903046262,
- "assets_count": 0,
- "unsubmitted_assets_count": 0,
- "all_requirements_met": true,
- "done": false,
- "done_at": null,
- "tag_suggesters_met": true,
- "unmet_tag_suggester_ids": [ ],
- "rights_packages_met": true,
- "creator_tags_met": true
}Create an Upload container in the default Storage Folder; only to be used when a Contribution is not available.
object |
| guid | string The Upload GUID to be used when uploading Assets |
{- "upload": {
- "name": "string",
- "note": "string",
- "default_rights_package_id": 0
}
}{- "id": 903046263,
- "user_id": 1015822051,
- "guid": "6a51af01",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-05-28T20:14:35.483Z",
- "updated_at": "2026-05-28T20:14:35.483Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": false,
- "contribution_id": 1025838277,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "user": {
- "id": 1015822051,
- "first_name": "Shaun",
- "last_name": "Witting",
- "created_at": "2026-05-28T20:14:31.355Z",
- "default_username": "gregorioraynor",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shaun Witting",
- "initials": "S W",
- "username": null,
- "title": null,
- "user_id": 1015822051,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "aws_key": "AKIATBO5XF4ER7OYZDV6",
- "bucket": "tandemvault-asset-uploads-test",
- "contribution": {
- "enabled": true,
- "id": 1025838277,
- "name": "Default",
- "text": null,
- "featured": true,
- "slug": null,
- "storage_folder_id": 1073073563,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": 1073073563,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-05-28T20:14:31.552Z",
- "updated_at": "2026-05-28T20:14:31.552Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 0,
- "assets_count": 0,
- "user_assets_count": 0,
- "type": "storage_folder",
- "is_public": false,
- "notify_emails": [ ],
- "notify_copy": null,
- "membership_ids": [ ],
- "contribution_memberships_count": 0,
- "enable_public": false,
- "to_param": "1025838277-default",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "asset_group": {
- "id": 1073073563,
- "name": "Default",
- "description": null,
- "type": "StorageFolder",
- "slug": "1073073563"
}, - "rights_packages": [ ],
- "storage_folder": {
- "id": 1073073563,
- "created_at": "2026-05-28T20:14:31.549Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 1073073562,
- "ancestor_ids": [
- 1073073562
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 1073073563,
- "has_workflow_steps": false,
- "contribution_id": 1025838277,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822051,
- "first_name": "Shaun",
- "last_name": "Witting",
- "created_at": "2026-05-28T20:14:31.355Z",
- "default_username": "gregorioraynor",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shaun Witting",
- "initials": "S W",
- "username": null,
- "title": null,
- "user_id": 1015822051,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "ftp_password": "ea72ff49",
- "ftp_url": "sftp://cari%40fadel.example:ea72ff49@//1071574684/48b820ec"
}User Groups allow organizations to organize members into groups with shared permissions. Groups can have associated collections, storage folders, and contribution settings.
Returns a paginated list of user groups for the organization.
| q | string Search by name or invite domain |
| aasm_state | string Filter by state |
| assignable | boolean Only return assignable groups (no auto groups) |
| omit_public | boolean Exclude public group |
| sortField | string Enum: "name" "created_at" "members_count" Sort field |
| total-entries | integer |
| id | string User Group ID |
| name | string Group name |
| description | string Group description |
| is_open | string Whether anyone can join |
| auto_group | string Auto group type if system-generated |
| members_count | string Number of members |
[- {
- "id": 1053904625,
- "name": "All Members",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": null,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": false,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:35.985Z",
- "updated_at": "2026-05-28T20:14:35.985Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": "all",
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 1,
- "permissions": [
- {
- "id": 1066712943,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Small Watermarked",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:35.988Z",
- "updated_at": "2026-05-28T20:14:35.988Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712944,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Medium",
- "image": "medium",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:35.992Z",
- "updated_at": "2026-05-28T20:14:35.992Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712945,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Full Size",
- "image": "full",
- "video": "full",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:35.996Z",
- "updated_at": "2026-05-28T20:14:35.996Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712946,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Medium",
- "image": "medium",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": true,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.004Z",
- "updated_at": "2026-05-28T20:14:36.004Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712947,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Full Size",
- "image": "full",
- "video": "full",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": true,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.010Z",
- "updated_at": "2026-05-28T20:14:36.010Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712948,
- "organization_id": 1071574685,
- "user_group_id": 1053904625,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Original File",
- "image": "original",
- "video": "original",
- "audio": "original",
- "other": "original",
- "watermark": false,
- "download": true,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.015Z",
- "updated_at": "2026-05-28T20:14:36.015Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822060,
- "first_name": "Trevor",
- "last_name": "Johnston",
- "created_at": "2026-05-28T20:14:35.514Z",
- "default_username": "earlene_robel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Trevor Johnston",
- "initials": "T J",
- "username": null,
- "title": null,
- "user_id": 1015822060,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - {
- "id": 1053904626,
- "name": "Public",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": null,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": false,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:36.030Z",
- "updated_at": "2026-05-28T20:14:36.030Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": "public",
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [
- {
- "id": 1066712949,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Small Watermarked",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.034Z",
- "updated_at": "2026-05-28T20:14:36.034Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712950,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Medium",
- "image": "medium",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.039Z",
- "updated_at": "2026-05-28T20:14:36.039Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712951,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View Only - Full Size",
- "image": "full",
- "video": "full",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.045Z",
- "updated_at": "2026-05-28T20:14:36.045Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712952,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Medium",
- "image": "medium",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": true,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.050Z",
- "updated_at": "2026-05-28T20:14:36.050Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712953,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Full Size",
- "image": "full",
- "video": "full",
- "audio": "listen",
- "other": "view",
- "watermark": true,
- "download": true,
- "enabled": null,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.055Z",
- "updated_at": "2026-05-28T20:14:36.055Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066712954,
- "organization_id": 1071574685,
- "user_group_id": 1053904626,
- "asset_group_id": null,
- "user_id": 1015822060,
- "name": "View and Download Original File",
- "image": "original",
- "video": "original",
- "audio": "original",
- "other": "original",
- "watermark": false,
- "download": true,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-05-28T20:14:36.062Z",
- "updated_at": "2026-05-28T20:14:36.062Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822060,
- "first_name": "Trevor",
- "last_name": "Johnston",
- "created_at": "2026-05-28T20:14:35.514Z",
- "default_username": "earlene_robel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Trevor Johnston",
- "initials": "T J",
- "username": null,
- "title": null,
- "user_id": 1015822060,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - {
- "id": 1053904627,
- "name": "Legal Services",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073073621,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:40.630Z",
- "updated_at": "2026-05-28T20:14:40.630Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [ ],
- "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822060,
- "first_name": "Trevor",
- "last_name": "Johnston",
- "created_at": "2026-05-28T20:14:35.514Z",
- "default_username": "earlene_robel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Trevor Johnston",
- "initials": "T J",
- "username": null,
- "title": null,
- "user_id": 1015822060,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073073621,
- "created_at": "2026-05-28T20:14:40.644Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Legal Services Storage",
- "Group Uploads"
], - "parent_id": 1073073620,
- "ancestor_ids": [
- 1073073620
], - "visible_assets_count": null,
- "path_slugs": [
- "legal-services-storage",
- "group-uploads"
], - "asset_group_id": 1073073621,
- "has_workflow_steps": false,
- "contribution_id": 1025838309,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822060,
- "first_name": "Trevor",
- "last_name": "Johnston",
- "created_at": "2026-05-28T20:14:35.514Z",
- "default_username": "earlene_robel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Trevor Johnston",
- "initials": "T J",
- "username": null,
- "title": null,
- "user_id": 1015822060,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904627,
- "name": "Legal Services",
- "description": null
}, - "editable": true
}
}
]Create a new user group with specified settings and permissions.
object |
| id | string Created User Group ID |
{- "user_group": {
- "name": "string",
- "description": "string",
- "is_open": true,
- "invite_domain": "string",
- "enable_contribution": true,
- "enable_home_collection": true,
- "collection_id": 0,
- "enable_storage_folder": true,
- "storage_folder_id": 0,
- "enable_content_managers": true,
- "enable_library_managers": true,
- "membership_ids": [
- 0
]
}
}{- "id": 1053904634,
- "name": "New Group",
- "description": "A test group",
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": null,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": false,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:49.595Z",
- "updated_at": "2026-05-28T20:14:49.595Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [ ],
- "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822078,
- "first_name": "Youlanda",
- "last_name": "Jacobi",
- "created_at": "2026-05-28T20:14:45.312Z",
- "default_username": "karma_baumbach",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Youlanda Jacobi",
- "initials": "Y J",
- "username": null,
- "title": null,
- "user_id": 1015822078,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "permissions_attributes": [ ],
- "home_collection_permission_ids": [ ],
- "membership_ids": [ ],
- "content_manager_ids": [ ],
- "library_manager_ids": [ ],
- "tagger_ids": [ ],
- "invites_attributes": [ ]
}Get details of a specific user group including permissions and settings.
| id required | integer |
| id | string User Group ID |
| name | string Group name |
| description | string Group description |
| is_open | string Whether open for joining |
| enable_contribution | string Whether group has upload form |
| enable_home_collection | string Whether home collection is enabled |
| collection_id | string Home collection ID |
| enable_storage_folder | string Whether storage folder access is enabled |
| storage_folder_id | string Associated storage folder ID |
| permissions | string Array of permissions |
| memberships | string Array of group members |
{- "id": 1053904630,
- "name": "Law Practice",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073073652,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:45.259Z",
- "updated_at": "2026-05-28T20:14:45.259Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [ ],
- "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822069,
- "first_name": "Justin",
- "last_name": "Witting",
- "created_at": "2026-05-28T20:14:40.697Z",
- "default_username": "dennis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Justin Witting",
- "initials": "J W",
- "username": null,
- "title": null,
- "user_id": 1015822069,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073073652,
- "created_at": "2026-05-28T20:14:45.278Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Law Practice Storage",
- "Group Uploads"
], - "parent_id": 1073073651,
- "ancestor_ids": [
- 1073073651
], - "visible_assets_count": null,
- "path_slugs": [
- "law-practice-storage",
- "group-uploads"
], - "asset_group_id": 1073073652,
- "has_workflow_steps": false,
- "contribution_id": 1025838326,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822069,
- "first_name": "Justin",
- "last_name": "Witting",
- "created_at": "2026-05-28T20:14:40.697Z",
- "default_username": "dennis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Justin Witting",
- "initials": "J W",
- "username": null,
- "title": null,
- "user_id": 1015822069,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904630,
- "name": "Law Practice",
- "description": null
}, - "editable": true
}, - "group_memberships": [ ]
}Update an existing user group configuration.
| id required | integer |
object |
{- "user_group": {
- "name": "string",
- "description": "string",
- "is_open": true,
- "membership_ids": [
- 0
]
}
}{- "id": 1053904637,
- "name": "Updated Group Name",
- "description": "Updated description",
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073073714,
- "enable_storage_folder_content_admin": false,
- "enable_storage_folder": true,
- "sandbox_collection_id": null,
- "enable_sandbox_collection": false,
- "sandbox_collection_admin_role_level": null,
- "sandbox_collection_children_inherit": true,
- "auto_add_approved_to_sandbox": false,
- "auto_approve": false,
- "require_rights_package": false,
- "enable_contract_uploads": false,
- "aasm_state": "active",
- "created_at": "2026-05-28T20:14:53.817Z",
- "updated_at": "2026-05-28T20:14:53.844Z",
- "enable_contribution": false,
- "contribution_id": null,
- "auto_group": null,
- "enable_content_managers": false,
- "enable_library_managers": false,
- "enable_taggers": false,
- "home_collection_admin_role_level": null,
- "home_collection_children_inherit": true,
- "memberships_count": 0,
- "permissions": [ ],
- "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015822087,
- "first_name": "Stefan",
- "last_name": "Kunde",
- "created_at": "2026-05-28T20:14:49.617Z",
- "default_username": "denita",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Stefan Kunde",
- "initials": "S K",
- "username": null,
- "title": null,
- "user_id": 1015822087,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "storage_folder": {
- "id": 1073073714,
- "created_at": "2026-05-28T20:14:53.828Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Professional Training & Coaching Storage",
- "Group Uploads"
], - "parent_id": 1073073713,
- "ancestor_ids": [
- 1073073713
], - "visible_assets_count": null,
- "path_slugs": [
- "professional-training-coaching-storage",
- "group-uploads"
], - "asset_group_id": 1073073714,
- "has_workflow_steps": false,
- "contribution_id": 1025838360,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822087,
- "first_name": "Stefan",
- "last_name": "Kunde",
- "created_at": "2026-05-28T20:14:49.617Z",
- "default_username": "denita",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Stefan Kunde",
- "initials": "S K",
- "username": null,
- "title": null,
- "user_id": 1015822087,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "user_group": {
- "id": 1053904637,
- "name": "Updated Group Name",
- "description": "Updated description"
}, - "editable": true
}, - "permissions_attributes": [ ],
- "home_collection_permission_ids": [ ],
- "membership_ids": [ ],
- "content_manager_ids": [ ],
- "library_manager_ids": [ ],
- "tagger_ids": [ ],
- "invites_attributes": [ ]
}Get your User details from your Personal Access Token or OAuth Access Token.
{- "id": 1015822105,
- "first_name": "Alex",
- "last_name": "McDermott",
- "created_at": "2026-05-28T20:14:57.925Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:14:57.924Z",
- "default_username": "tashia",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Alex McDermott",
- "initials": "A M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015822105,
- "oauth_token": null,
- "membership": null,
- "organization": null
}Webhooks allow you to receive real-time HTTP notifications when events occur in Mediagraph, such as asset uploads, metadata changes, or collection updates.
Returns a paginated list of webhooks configured for the organization.
| q | string Search by webhook name, URL, or asset group name |
| enabled | Array of strings Filter by enabled status |
| sortField | string Enum: "created_at" "name" "url" Sort field |
| total-entries | integer |
| id | string Webhook ID |
| name | string Webhook name |
| url | string Destination URL |
| enabled | string Whether the webhook is active |
| events | string Events that trigger this webhook |
[- {
- "id": 955336213,
- "user": {
- "id": 1015822123,
- "first_name": "Genaro",
- "last_name": "Wyman",
- "created_at": "2026-05-28T20:15:06.864Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:15:06.863Z",
- "default_username": "patti",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Genaro Wyman",
- "initials": "G W",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015822123
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 1073073838,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-05-28T20:15:11.610Z",
- "updated_at": "2026-05-28T20:15:11.610Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "1073073838",
- "asset_group_path_names": [
- "Chagall251"
], - "requests_count": 0,
- "group_assets": true,
- "trash": false
}
]Create a new webhook to receive event notifications.
Available Events:
asset.created - Asset uploadedasset.updated - Asset metadata changedasset.deleted - Asset moved to trashasset.restored - Asset restored from trashcollection.updated - Collection modifiedobject |
| id | string Created Webhook ID |
{- "webhook": {
- "name": "My Integration Webhook",
- "enabled": true,
- "events": "asset.created,asset.updated",
- "asset_group_id": 1073073908,
- "include_download_url": true,
- "group_assets": true,
- "trash": true,
- "note": "string"
}
}{- "id": 955336216,
- "organization_id": 1071574694,
- "user_id": 1015822143,
- "name": "My Integration Webhook",
- "note": null,
- "asset_group_id": 1073073908,
- "events": "asset.created,asset.updated",
- "include_download_url": false,
- "created_at": "2026-05-28T20:15:20.829Z",
- "updated_at": "2026-05-28T20:15:20.829Z",
- "enabled": true,
- "group_assets": true,
- "trash": false
}Get details of a specific webhook.
| id required | integer |
| id | string Webhook ID |
| name | string Webhook name |
| url | string Destination URL |
| enabled | string Whether the webhook is active |
| events | string Events that trigger this webhook |
| asset_group_id | string Asset group ID if scoped to a specific collection/folder |
| include_download_url | string Whether to include download URL in payload |
| group_assets | string Whether to group assets in batch notifications |
| note | string Internal notes |
{- "id": 955336214,
- "user": {
- "id": 1015822133,
- "first_name": "Hilario",
- "last_name": "Okuneva",
- "created_at": "2026-05-28T20:15:11.641Z",
- "can_create_orgs": false,
- "confirmed_at": "2026-05-28T20:15:11.640Z",
- "default_username": "anjelica",
- "otp_required_for_login": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "support": false,
- "avatar_url": null,
- "name": "Hilario Okuneva",
- "initials": "H O",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015822133
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 1073073873,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-05-28T20:15:16.123Z",
- "updated_at": "2026-05-28T20:15:16.123Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "1073073873",
- "asset_group_path_names": [
- "Gauguin252"
], - "requests_count": 0,
- "group_assets": true,
- "trash": false,
- "asset_group": {
- "id": 1073073873,
- "created_at": "2026-05-28T20:15:16.117Z",
- "name": "Gauguin252",
- "description": "Esse nam ut. Tempora illum similique. Quos voluptate architecto.",
- "slug": "theorist-doctor252",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin252"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "theorist-doctor252"
], - "asset_group_id": 1073073873,
- "has_workflow_steps": false,
- "contribution_id": 1025838449,
- "enable_contribution": true,
- "sort_order": null,
- "box_folder_id": null,
- "box_folder_name": null,
- "publish_user_id": null,
- "publish_user": null,
- "publish_type": null,
- "dropbox_folder_id": null,
- "dropbox_folder_name": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "lightroom_publish_service_id": null,
- "view_settings": null,
- "last_lightroom_sync_at": null,
- "created_via": null,
- "created_via_id": null,
- "reindexing_at": null,
- "google_drive_folder_id": null,
- "google_drive_folder_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822142,
- "first_name": "Romeo",
- "last_name": "MacGyver",
- "created_at": "2026-05-28T20:15:15.467Z",
- "default_username": "pegcollins",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Romeo MacGyver",
- "initials": "R M",
- "username": null,
- "title": null,
- "user_id": 1015822142,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "editable": true
}
}Update an existing webhook configuration.
| id required | integer |
object |
{- "webhook": {
- "name": "string",
- "url": "string",
- "enabled": true,
- "events": "string",
- "asset_group_id": 0,
- "include_download_url": true,
- "group_assets": true,
- "trash": true,
- "note": "string"
}
}{- "organization_id": 1071574696,
- "enabled": false,
- "name": "Updated Webhook Name",
- "id": 955336219,
- "user_id": 1015822163,
- "note": null,
- "asset_group_id": 1073073978,
- "events": null,
- "include_download_url": false,
- "created_at": "2026-05-28T20:15:30.249Z",
- "updated_at": "2026-05-28T20:15:30.258Z",
- "group_assets": true,
- "trash": false
}Send a test POST request to verify webhook URL is reachable. Returns success if the URL responds with a 2xx status code.
| url required | string URL to test |
| message | string Success message if URL is reachable |
| error | string Error message if URL is not reachable |
{- "message": "Success"
}Returns a paginated list of webhook request logs showing delivery history.
| id required | integer |
| sortField | string Enum: "created_at" "status" Sort field |
| total-entries | integer |
| id | string Request log ID |
| status | string HTTP response status |
| created_at | string Request timestamp |
[ ]Get the JSON payload that was sent for a specific webhook request.
| webhook_request_id required | integer Webhook Request ID |
{- "test": "data"
}Get the response received from the webhook endpoint for a specific request.
| webhook_request_id required | integer Webhook Request ID |
{- "received": true
}Workflow Steps are individual stages within a workflow. Each step can have assigned reviewers and approval requirements.
Returns all workflow steps for the organization.
| id | string Workflow Step ID |
| name | string Step name |
| workflow_id | string Parent workflow ID |
[- {
- "id": 975327007,
- "name": "culpa",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073074183,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-05-28T20:15:58.612Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 1014085960,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073074183,
- "name": "Pissarro261",
- "sub_type": null,
- "path_names": [
- "Pissarro261"
], - "path_slugs": [
- "angel-shock261"
], - "description": "Nam ut praesentium. Et voluptatem aperiam. Consectetur vitae error.",
- "created_at": "2026-05-28T20:15:58.610Z",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "organizer": false,
- "type": "Lightbox",
- "has_workflow_steps": true,
- "enable_contribution": false,
- "visible_assets_count": null,
- "asset_group_id": 1073074183,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073074183,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073074183,
- "view_settings": null,
- "access_request_id": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822223,
- "first_name": "Raul",
- "last_name": "Schaden",
- "created_at": "2026-05-28T20:15:54.579Z",
- "default_username": "mickie_bartell",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Raul Schaden",
- "initials": "R S",
- "username": null,
- "title": null,
- "user_id": 1015822223,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "contribution_id": false,
- "slug": "1073074183-angel-shock261",
- "can_manage": null,
- "can_edit": null,
- "editable": null,
- "role": null,
- "owner": null,
- "can_update_assets": true
}
}
]Get details of a specific workflow step.
| id required | integer |
{- "id": 975327008,
- "name": "sapiente",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073074213,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-05-28T20:16:02.613Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 1014085961,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073074213,
- "name": "Escher262",
- "sub_type": null,
- "path_names": [
- "Escher262"
], - "path_slugs": [
- "brown_push262"
], - "description": "Soluta labore vitae. Mollitia earum quia. Soluta possimus temporibus.",
- "created_at": "2026-05-28T20:16:02.610Z",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "organizer": false,
- "type": "Lightbox",
- "has_workflow_steps": true,
- "enable_contribution": false,
- "visible_assets_count": null,
- "asset_group_id": 1073074213,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073074213,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073074213,
- "view_settings": null,
- "access_request_id": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822232,
- "first_name": "Justine",
- "last_name": "Paucek",
- "created_at": "2026-05-28T20:15:58.644Z",
- "default_username": "brandestehr",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Justine Paucek",
- "initials": "J P",
- "username": null,
- "title": null,
- "user_id": 1015822232,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "contribution_id": false,
- "slug": "1073074213-brown_push262",
- "can_manage": null,
- "can_edit": null,
- "editable": null,
- "role": null,
- "owner": null,
- "can_update_assets": true
}, - "workflow": {
- "name": "rerum",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:16:02.607Z",
- "auto": false,
- "user": {
- "id": 1015822232,
- "first_name": "Justine",
- "last_name": "Paucek",
- "created_at": "2026-05-28T20:15:58.644Z",
- "default_username": "brandestehr",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Justine Paucek",
- "initials": "J P",
- "username": null,
- "title": null,
- "user_id": 1015822232,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}
}, - "approvals": [ ],
- "approved_count": 0,
- "pending_count": 0,
- "rejected_count": 0,
- "picked_count": 0
}Update a workflow step's settings.
| id required | integer |
object |
{- "workflow_step": {
- "name": "string"
}
}{- "id": 975327009,
- "name": "Updated Step",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073074243,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-05-28T20:16:06.552Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 1014085962,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073074243,
- "name": "Titian263",
- "sub_type": null,
- "path_names": [
- "Titian263"
], - "path_slugs": [
- "vegetarian_publish263"
], - "description": "Repudiandae fugiat tempora. Nihil quasi sint. Quia fugit et.",
- "created_at": "2026-05-28T20:16:06.549Z",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "organizer": false,
- "type": "Lightbox",
- "has_workflow_steps": true,
- "enable_contribution": false,
- "visible_assets_count": null,
- "asset_group_id": 1073074243,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073074243,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073074243,
- "view_settings": null,
- "access_request_id": null,
- "reindexing_at": null,
- "frame_project_id": null,
- "frame_project_name": null,
- "frame_team_id": null,
- "frame_team_name": null,
- "children_sort_order": null,
- "user": {
- "id": 1015822241,
- "first_name": "Nicholas",
- "last_name": "Boyle",
- "created_at": "2026-05-28T20:16:02.647Z",
- "default_username": "jacques",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Nicholas Boyle",
- "initials": "N B",
- "username": null,
- "title": null,
- "user_id": 1015822241,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "contribution_id": false,
- "slug": "1073074243-vegetarian_publish263",
- "can_manage": null,
- "can_edit": null,
- "editable": null,
- "role": null,
- "owner": null,
- "can_update_assets": true
}
}Approve selected assets in a workflow step, moving them to the next step.
| id required | integer |
| asset_ids required | Array of integers Array of asset IDs to approve |
[- {
- "id": null,
- "aasm_state": "pending",
- "user_id": 1015822250,
- "asset_group_asset_id": 1052042142,
- "workflow_step_id": 975327010,
- "created_at": null,
- "updated_at": null,
- "asset_group_id": null,
- "asset_id": 1060943196
}
]Workflows define multi-step approval processes for assets. Each workflow contains steps that can require approvals before assets proceed.
Returns all workflows for the organization.
| total-entries | integer |
| id | string Workflow ID |
| name | string Workflow name |
[- {
- "id": 1014085965,
- "name": "ea",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:16:20.764Z",
- "updated_at": "2026-05-28T20:16:20.764Z",
- "user": {
- "id": 1015822272,
- "first_name": "Rob",
- "last_name": "Mann",
- "created_at": "2026-05-28T20:16:16.639Z",
- "default_username": "brain_ruecker",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Rob Mann",
- "initials": "R M",
- "username": null,
- "title": null,
- "user_id": 1015822272,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "steps": [ ],
- "editable": true
}
]Create a new workflow for the organization.
object |
{- "workflow": {
- "name": "string"
}
}{- "id": 1014085968,
- "organization_id": 1071574709,
- "user_id": 1015822290,
- "name": "Review Workflow",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:16:28.791Z",
- "updated_at": "2026-05-28T20:16:28.791Z",
- "auto": false,
- "access_request_id": null
}Get details of a specific workflow.
| id required | integer |
{- "id": 1014085966,
- "name": "odit",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:16:24.732Z",
- "updated_at": "2026-05-28T20:16:24.732Z",
- "user": {
- "id": 1015822281,
- "first_name": "Roland",
- "last_name": "Greenholt",
- "created_at": "2026-05-28T20:16:20.791Z",
- "default_username": "richardankunding",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Roland Greenholt",
- "initials": "R G",
- "username": null,
- "title": null,
- "user_id": 1015822281,
- "lang": null,
- "notify_new_membership_requests": null,
- "support": false
}, - "steps": [ ],
- "editable": true
}Update a workflow's settings.
| id required | integer |
object |
{- "workflow": {
- "name": "string"
}
}{- "name": "Updated Workflow",
- "id": 1014085969,
- "organization_id": 1071574710,
- "user_id": 1015822299,
- "description": null,
- "aasm_state": null,
- "created_at": "2026-05-28T20:16:32.884Z",
- "updated_at": "2026-05-28T20:16:32.893Z",
- "auto": false,
- "access_request_id": null
}