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 Token | POST | https://mediagraph.io/oauth/token?grant_type=authorization_code&code=... |
| Revoke Token | POST | https://mediagraph.io/oauth/revoke?token=... |
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) |
| current | integer Default: 1 Current page number |
| pageSize | integer Default: 25 Number of items per page |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 62363,
- "name": "Fermium",
- "sub_type": "access_request",
- "path_names": [
- "Fermium"
], - "path_slugs": [
- "fermium"
], - "description": null,
- "created_at": "2026-01-29T15:27:02.939Z",
- "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": 62363,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 62363,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 62363,
- "view_settings": null,
- "access_request_id": 67,
- "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": 19836,
- "first_name": "Marianna",
- "last_name": "Bins",
- "created_at": "2026-01-29T15:26:57.660Z",
- "default_username": "santo",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marianna Bins",
- "initials": "M B",
- "username": null,
- "title": null,
- "user_id": 19836,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "62363-fermium",
- "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": 74,
- "user_id": 19908,
- "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": 62580,
- "grant_lightbox_id": null,
- "created_at": "2026-01-29T15:27:24.699Z",
- "updated_at": "2026-01-29T15:27:24.717Z",
- "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": "e5f6bad2258cabccb62726fa98f3a78e",
- "user": {
- "id": 19908,
- "first_name": "Deanna",
- "last_name": "Heidenreich",
- "created_at": "2026-01-29T15:27:20.881Z",
- "default_username": "rosariohayes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deanna Heidenreich",
- "initials": "D H",
- "username": null,
- "title": null,
- "user_id": 19908,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "74-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 |
| page | integer Page number |
[- {
- "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": 71,
- "user_id": 19884,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Darmstadtium",
- "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": 62507,
- "grant_lightbox_id": null,
- "created_at": "2026-01-29T15:27:17.093Z",
- "updated_at": "2026-01-29T15:27:17.107Z",
- "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": "de64ceb77c67b9ac4858b51340923bb6",
- "user": {
- "id": 19884,
- "first_name": "Jewel",
- "last_name": "Bradtke",
- "created_at": "2026-01-29T15:27:13.802Z",
- "default_username": "tyler_wehner",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jewel Bradtke",
- "initials": "J B",
- "username": null,
- "title": null,
- "user_id": 19884,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "71-darmstadtium",
- "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": 1579,
- "id": 75,
- "user_id": 19920,
- "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": 62616,
- "grant_lightbox_id": null,
- "created_at": "2026-01-29T15:27:29.137Z",
- "updated_at": "2026-01-29T15:27:29.392Z",
- "email": null,
- "code": "d0f3710d9f39024c13e9fae3754d14d5",
- "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": 72,
- "user_id": 19896,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Gadolinium",
- "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": 62543,
- "grant_lightbox_id": null,
- "created_at": "2026-01-29T15:27:20.626Z",
- "updated_at": "2026-01-29T15:27:20.646Z",
- "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": "f6e81da40fde9260ae7527094cdc8228",
- "user": {
- "id": 19896,
- "first_name": "Lu",
- "last_name": "Rosenbaum",
- "created_at": "2026-01-29T15:27:17.328Z",
- "default_username": "romeo",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lu Rosenbaum",
- "initials": "L R",
- "username": null,
- "title": null,
- "user_id": 19896,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "72-gadolinium",
- "managable": true,
- "finalized_by": null,
- "custom_meta_values": [ ]
}, - "asset_group": {
- "id": 62543,
- "name": "Gadolinium",
- "sub_type": "access_request",
- "path_names": [
- "Gadolinium"
], - "path_slugs": [
- "gadolinium"
], - "description": null,
- "created_at": "2026-01-29T15:27:20.629Z",
- "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": 62543,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 62543,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 62543,
- "view_settings": null,
- "access_request_id": 72,
- "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": 19896,
- "first_name": "Lu",
- "last_name": "Rosenbaum",
- "created_at": "2026-01-29T15:27:17.328Z",
- "default_username": "romeo",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lu Rosenbaum",
- "initials": "L R",
- "username": null,
- "title": null,
- "user_id": 19896,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "62543-gadolinium",
- "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": 76,
- "user_id": 19932,
- "workflow_id": 79,
- "aasm_state": "submitted",
- "name": "Chromium",
- "description": null,
- "submitted_at": "2026-01-29T15:27:33.214Z",
- "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": 62652,
- "grant_lightbox_id": null,
- "created_at": "2026-01-29T15:27:32.947Z",
- "updated_at": "2026-01-29T15:27:33.233Z",
- "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": "4246ba9d3f302fae0c020e9db57bfbe5",
- "user": {
- "id": 19932,
- "first_name": "Jamel",
- "last_name": "Shanahan",
- "created_at": "2026-01-29T15:27:29.402Z",
- "default_username": "otelia",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jamel Shanahan",
- "initials": "J S",
- "username": null,
- "title": null,
- "user_id": 19932,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "76-chromium",
- "managable": true,
- "finalized_by": null
}Get versions for an Asset.
| asset_id | integer Example: asset_id=1403 Asset ID |
| include_renditions | boolean Example: include_renditions=true Include list of downloadable sizes and formats |
[- {
- "id": 1424,
- "asset_id": 1403,
- "user_id": 19965,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "vitae.gif",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "gif",
- "created_via": null,
- "previews_generated_at": null,
- "thumbs_count": null,
- "created_at": "2026-01-29T15:27:41.207Z",
- "updated_at": "2026-01-29T15:27:41.207Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 19965,
- "first_name": "Efrain",
- "last_name": "Kohler",
- "default_username": "terrapfeffer",
- "confirmed_at": "2026-01-29T15:27:40.008Z",
- "created_at": "2026-01-29T15:27:40.008Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Efrain Kohler",
- "initials": "E K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 19965
}, - "grid_url": null,
- "type": "Video",
- "mime_type": "image/gif",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "sed-ad11",
- "full_url": null,
- "renditions": [
- {
- "name": "original",
- "ext": "gif"
}
]
}, - {
- "id": 1423,
- "asset_id": 1403,
- "user_id": 19965,
- "number": 1,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "soluta.jpg",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "jpg",
- "created_via": null,
- "previews_generated_at": "2026-01-29T15:27:41.033Z",
- "thumbs_count": null,
- "created_at": "2026-01-29T15:27:40.881Z",
- "updated_at": "2026-01-29T15:27:41.033Z",
- "is_head": false,
- "aasm_state": "processed",
- "user": {
- "id": 19965,
- "first_name": "Efrain",
- "last_name": "Kohler",
- "default_username": "terrapfeffer",
- "confirmed_at": "2026-01-29T15:27:40.008Z",
- "created_at": "2026-01-29T15:27:40.008Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Efrain Kohler",
- "initials": "E K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 19965
}, - "type": "Image",
- "mime_type": "image/jpeg",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "sed-ad11",
- "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=1404 Asset ID |
| number | integer Example: number=2 Asset Data Version Number |
{- "id": 1426,
- "asset_id": 1404,
- "user_id": 19978,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "eaque.csv",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "csv",
- "created_via": null,
- "previews_generated_at": null,
- "thumbs_count": null,
- "created_at": "2026-01-29T15:27:44.933Z",
- "updated_at": "2026-01-29T15:27:44.933Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 19978,
- "first_name": "Augusta",
- "last_name": "Gerhold",
- "default_username": "adriaheathcote",
- "confirmed_at": "2026-01-29T15:27:43.712Z",
- "created_at": "2026-01-29T15:27:43.712Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Augusta Gerhold",
- "initials": "A G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 19978
}, - "grid_url": null,
- "type": "Text",
- "mime_type": "text/csv",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "corrupti-aut12",
- "full_url": null
}Searches all Assets you have access to in the Organization. POST is also supported for long lists e.g. Asset IDs.
| page | integer Example: page=1 Current page of assets |
| per_page | integer Default: 25 Number of assets per page (max 100) |
| 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 order, add '-asc' or '-desc' for direction |
| 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": "Last 30 Days",
- "from": 1767052800000,
- "from_as_string": "2025-12-30T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1768435200000,
- "from_as_string": "2026-01-15T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1769644800000,
- "from_as_string": "2026-01-29T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "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": "Last 30 Days",
- "from": 1767052800000,
- "from_as_string": "2025-12-30T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1768435200000,
- "from_as_string": "2026-01-15T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1769644800000,
- "from_as_string": "2026-01-29T00:00:00.000Z",
- "to": 1769700472337,
- "to_as_string": "2026-01-29T15:27:52.337Z",
- "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": "Pizza 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": 12693,
- "key_as_string": "Owned by Organization",
- "doc_count": 1,
- "parent": "Owned by Organization"
}, - {
- "key": 12695,
- "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": 1407,
- "filename": "quae.jpg",
- "file_size": null,
- "guid": "e53fcb84-f3a1-4818-a7fa-c319ea96850b",
- "short_guid": "e53fcb84",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": 1584,
- "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": 1416,
- "user_id": 19999,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:27:50.746Z",
- "updated_at": "2026-01-29T15:27:51.154Z",
- "s3_upload_id": null,
- "s3_upload_key": "1584/d406546f/e53fcb84-f3a1-4818-a7fa-c319ea96850b-quae.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:27:50.745Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12695,
- "submitted_at": "2026-01-29T03:27:50.745Z",
- "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": 3153,
- "text": "Pizza 27",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 4692
}
], - "user": {
- "id": 19999,
- "first_name": "Grazyna",
- "last_name": "Thompson",
- "created_at": "2026-01-29T15:27:49.861Z",
- "default_username": "kandicecrooks",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Grazyna Thompson",
- "initials": "G T",
- "username": null,
- "title": null,
- "user_id": 19999,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "fugit-dolorum15",
- "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": "e53fcb84-f3a1-4818-a7fa-c319ea96850b",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1429,
- "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": [
- "Pizza 27"
]
}, - "others": { }
},
}, - {
- "id": 1406,
- "filename": "enim.txt",
- "file_size": null,
- "guid": "3264306a-5ec8-474f-a977-edd013ad4306",
- "short_guid": "3264306a",
- "type": "Text",
- "ext": "txt",
- "duration": null,
- "md5": null,
- "mime_type": "text/plain",
- "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": {
- "value": -1,
- "created_at": "2026-01-29T15:27:51.069Z",
- "updated_at": "2026-01-29T15:27:51.069Z"
}, - "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": 1584,
- "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": 1415,
- "user_id": 19995,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:27:49.546Z",
- "updated_at": "2026-01-29T15:27:51.224Z",
- "s3_upload_id": null,
- "s3_upload_key": "1584/bef11c20/3264306a-5ec8-474f-a977-edd013ad4306-enim.txt",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:27:49.545Z",
- "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-01-29T03:27:49.545Z",
- "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": 19995,
- "first_name": "Fanny",
- "last_name": "Muller",
- "created_at": "2026-01-29T15:27:48.693Z",
- "default_username": "earnest_predovic",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Fanny Muller",
- "initials": "F M",
- "username": null,
- "title": null,
- "user_id": 19995,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "et-itaque14",
- "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": "3264306a-5ec8-474f-a977-edd013ad4306",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1428,
- "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": 1405,
- "filename": "deserunt.jpg",
- "file_size": null,
- "guid": "0a254988-b305-40d6-bd73-cfe491cb1ba8",
- "short_guid": "0a254988",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:27:51.067Z",
- "updated_at": "2026-01-29T15:27:51.067Z"
}, - "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": 1584,
- "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": 1414,
- "user_id": 19991,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:27:48.364Z",
- "updated_at": "2026-01-29T15:27:48.437Z",
- "s3_upload_id": null,
- "s3_upload_key": "1584/0ebb5ca6/0a254988-b305-40d6-bd73-cfe491cb1ba8-deserunt.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:27:48.363Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12693,
- "submitted_at": "2026-01-29T03:27:48.363Z",
- "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": 19991,
- "first_name": "Sheron",
- "last_name": "Pollich",
- "created_at": "2026-01-29T15:27:47.511Z",
- "default_username": "mendy",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sheron Pollich",
- "initials": "S P",
- "username": null,
- "title": null,
- "user_id": 19991,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "maiores-expedita13",
- "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": "0a254988-b305-40d6-bd73-cfe491cb1ba8",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1427,
- "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 |
{- "id": 1423,
- "filename": "amet.jpg",
- "file_size": null,
- "guid": "0cf74b82-06c6-433a-8663-cce78bd1cc4d",
- "short_guid": "0cf74b82",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:28:35.415Z",
- "updated_at": "2026-01-29T15:28:35.415Z"
}, - "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": 1589,
- "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": 1432,
- "user_id": 20114,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:28:32.376Z",
- "updated_at": "2026-01-29T15:28:32.454Z",
- "s3_upload_id": null,
- "s3_upload_key": "1589/35590030/0cf74b82-06c6-433a-8663-cce78bd1cc4d-amet.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:28:32.374Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12733,
- "submitted_at": "2026-01-29T03:28:32.374Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-01-29T15:28:35.444Z",
- "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": 20114,
- "first_name": "Lacey",
- "last_name": "Parker",
- "created_at": "2026-01-29T15:28:31.466Z",
- "default_username": "armand",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lacey Parker",
- "initials": "L P",
- "username": null,
- "title": null,
- "user_id": 20114,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "adipisci-minima33",
- "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,
- "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,
- "product_in_image": null,
- "artwork_or_object": 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": 63158,
- "created_at": "2026-01-29T15:28:32.359Z",
- "name": "Ansel Adams33",
- "description": "Modi animi velit. Et aliquid et. Quod ipsum sed.",
- "slug": "adipisci-minima33",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Ansel Adams33"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "adipisci-minima33"
], - "asset_group_id": 63158,
- "has_workflow_steps": false,
- "contribution_id": 37380,
- "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": 20117,
- "first_name": "Daniella",
- "last_name": "Kozey",
- "created_at": "2026-01-29T15:28:31.993Z",
- "default_username": "vicki",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Daniella Kozey",
- "initials": "D K",
- "username": null,
- "title": null,
- "user_id": 20117,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12733,
- "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-01-29T15:28:28.839Z",
- "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": 12734,
- "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-01-29T15:28:28.841Z",
- "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": 12735,
- "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-01-29T15:28:28.843Z",
- "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": 12736,
- "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-01-29T15:28:28.845Z",
- "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": 12737,
- "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-01-29T15:28:28.847Z",
- "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": 12738,
- "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-01-29T15:28:28.849Z",
- "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": 12739,
- "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-01-29T15:28:28.850Z",
- "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": 12740,
- "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-01-29T15:28:28.855Z",
- "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": 12733,
- "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-01-29T15:28:28.839Z",
- "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": 1432,
- "user_id": 20115,
- "guid": "35590030",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:28:32.371Z",
- "updated_at": "2026-01-29T15:28:32.371Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37381,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37381,
- "name": "et",
- "text": "Placeat quo dignissimos. Qui rerum necessitatibus. Dolore nostrum animi.",
- "featured": true,
- "slug": "ut-neque",
- "storage_folder_id": 63158,
- "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-01-29T15:28:32.368Z",
- "updated_at": "2026-01-29T15:28:32.368Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37381-et",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63158,
- "created_at": "2026-01-29T15:28:32.359Z",
- "name": "Ansel Adams33",
- "description": "Modi animi velit. Et aliquid et. Quod ipsum sed.",
- "slug": "adipisci-minima33",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Ansel Adams33"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "adipisci-minima33"
], - "asset_group_id": 63158,
- "has_workflow_steps": false,
- "contribution_id": 37380,
- "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": 20117,
- "first_name": "Daniella",
- "last_name": "Kozey",
- "created_at": "2026-01-29T15:28:31.993Z",
- "default_username": "vicki",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Daniella Kozey",
- "initials": "D K",
- "username": null,
- "title": null,
- "user_id": 20117,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20115,
- "first_name": "Kristal",
- "last_name": "Hoppe",
- "created_at": "2026-01-29T15:28:31.846Z",
- "default_username": "kiethkautzer",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kristal Hoppe",
- "initials": "K H",
- "username": null,
- "title": null,
- "user_id": 20115,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "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",
- "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"
], - "product_in_image": {
- "product_name": [
- "string"
], - "product_description": [
- "string"
], - "product_gtin": [
- "string"
], - "product_sku": [
- "string"
]
}, - "artwork_or_object": {
- "ao_title": [
- "string"
], - "ao_circa_date_created": [
- "string"
], - "ao_content_description": [
- "string"
], - "ao_contribution_description": [
- "string"
], - "ao_copyright_notice": [
- "string"
], - "ao_creator": [
- "string"
], - "ao_creator_id": [
- "string"
], - "ao_current_copyright_owner_id": [
- "string"
], - "ao_current_licensor_id": [
- "string"
], - "ao_current_licensor_name": [
- "string"
], - "ao_date_created": [
- "string"
], - "ao_physical_description": [
- "string"
], - "ao_source": [
- "string"
], - "ao_source_inventory_number": [
- "string"
], - "ao_source_inventory_url": [
- "string"
], - "ao_style_period": [
- "string"
]
}, - "latitude": 0,
- "longitude": 0,
- "rights_package_id": 0,
- "rights_status": "owned",
- "contract": true,
- "release": true,
- "custom_meta": {
- "Custom Meta Field 70": "Hummus",
- "Custom Meta Field 71": [
- "California Maki 53"
]
}, - "block_level": 0
}, - "sync": true
}{- "id": 1435,
- "filename": "et.jpg",
- "file_size": null,
- "guid": "231b9198-df24-4fa2-8845-48638a9a7e12",
- "short_guid": "231b9198",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:29:07.382Z",
- "updated_at": "2026-01-29T15:29:07.382Z"
}, - "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": 1593,
- "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": 1444,
- "user_id": 20198,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:03.947Z",
- "updated_at": "2026-01-29T15:29:07.932Z",
- "s3_upload_id": null,
- "s3_upload_key": "1593/8437d935/231b9198-df24-4fa2-8845-48638a9a7e12-et.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:03.945Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12765,
- "submitted_at": "2026-01-29T03:29:03.945Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-01-29T15:29:08.781Z",
- "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": 3179,
- "text": "California Maki 53",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 4723
}, - {
- "id": 3181,
- "text": "Hummus",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 4722
}
], - "user": {
- "id": 20198,
- "first_name": "Lynetta",
- "last_name": "Mitchell",
- "created_at": "2026-01-29T15:29:02.853Z",
- "default_username": "winfredbins",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lynetta Mitchell",
- "initials": "L M",
- "username": null,
- "title": null,
- "user_id": 20198,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "necessitatibus_odit45",
- "tags": [
- {
- "id": 530,
- "name": "New Tag 1",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 295,
- "tagged_at": "2026-01-29T15:29:07.888Z",
- "tag_updated_at": "2026-01-29T15:29:07.893Z",
- "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,
- "in_taxonomy": false
}, - {
- "id": 531,
- "name": "New Tag 2",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 296,
- "tagged_at": "2026-01-29T15:29:07.905Z",
- "tag_updated_at": "2026-01-29T15:29:07.909Z",
- "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,
- "in_taxonomy": false
}
], - "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 14,
- "created_at": "2026-01-29T15:29:07.854Z",
- "title": "Mediagraph",
- "image": null,
- "description": null,
- "author": null,
- "spidered_at": "2026-01-29T15:29:08.684Z",
- "meta_error": null
}
], - "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 63406,
- "created_at": "2026-01-29T15:29:03.924Z",
- "name": "Vincent45",
- "description": "Et officia quis. Ut et enim. Exercitationem voluptatem natus.",
- "slug": "necessitatibus_odit45",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Vincent45"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "necessitatibus_odit45"
], - "asset_group_id": 63406,
- "has_workflow_steps": false,
- "contribution_id": 37540,
- "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": 20201,
- "first_name": "Berry",
- "last_name": "Emard",
- "created_at": "2026-01-29T15:29:03.494Z",
- "default_username": "fallon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Berry Emard",
- "initials": "B E",
- "username": null,
- "title": null,
- "user_id": 20201,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12765,
- "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-01-29T15:29:00.445Z",
- "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": 12766,
- "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-01-29T15:29:00.447Z",
- "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": 12767,
- "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-01-29T15:29:00.448Z",
- "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": 12768,
- "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-01-29T15:29:00.450Z",
- "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": 12769,
- "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-01-29T15:29:00.452Z",
- "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": 12770,
- "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-01-29T15:29:00.453Z",
- "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": 12771,
- "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-01-29T15:29:00.455Z",
- "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": 12772,
- "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-01-29T15:29:00.457Z",
- "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": 12765,
- "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-01-29T15:29:00.445Z",
- "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": 1444,
- "user_id": 20199,
- "guid": "8437d935",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:03.940Z",
- "updated_at": "2026-01-29T15:29:03.940Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37541,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37541,
- "name": "doloremque",
- "text": "Facere tempore illo. Aut consectetur quisquam. Illo consequatur maiores.",
- "featured": true,
- "slug": "id-animi",
- "storage_folder_id": 63406,
- "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-01-29T15:29:03.938Z",
- "updated_at": "2026-01-29T15:29:03.938Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37541-doloremque",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63406,
- "created_at": "2026-01-29T15:29:03.924Z",
- "name": "Vincent45",
- "description": "Et officia quis. Ut et enim. Exercitationem voluptatem natus.",
- "slug": "necessitatibus_odit45",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Vincent45"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "necessitatibus_odit45"
], - "asset_group_id": 63406,
- "has_workflow_steps": false,
- "contribution_id": 37540,
- "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": 20201,
- "first_name": "Berry",
- "last_name": "Emard",
- "created_at": "2026-01-29T15:29:03.494Z",
- "default_username": "fallon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Berry Emard",
- "initials": "B E",
- "username": null,
- "title": null,
- "user_id": 20201,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20199,
- "first_name": "Lashonda",
- "last_name": "Muller",
- "created_at": "2026-01-29T15:29:03.333Z",
- "default_username": "amal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lashonda Muller",
- "initials": "L M",
- "username": null,
- "title": null,
- "user_id": 20199,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_ids": [ ]
}Downloads the Asset. Partial downloading is supported using the header: Range: bytes=<start>-<end>
| id required | integer |
| size | string Enum: "small" "permalink" "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) |
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": 1441,
- "filename": "est.jpg",
- "file_size": null,
- "guid": "c044a460-5feb-4831-8c9e-0a63263e604c",
- "short_guid": "c044a460",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:29:21.158Z",
- "updated_at": "2026-01-29T15:29:21.158Z"
}, - "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": 1595,
- "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": 1450,
- "user_id": 20240,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:18.397Z",
- "updated_at": "2026-01-29T15:29:21.171Z",
- "s3_upload_id": null,
- "s3_upload_key": "1595/6b22d410/c044a460-5feb-4831-8c9e-0a63263e604c-est.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:18.393Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12781,
- "submitted_at": "2026-01-29T03:29:18.393Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": "2026-01-29T15:29:21.166Z",
- "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": 20240,
- "first_name": "Lemuel",
- "last_name": "Lemke",
- "created_at": "2026-01-29T15:29:17.525Z",
- "default_username": "hilario_franecki",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lemuel Lemke",
- "initials": "L L",
- "username": null,
- "title": null,
- "user_id": 20240,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "occaecati_dolore51",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 20231,
- "first_name": "Marilyn",
- "last_name": "Howe",
- "default_username": "starr",
- "confirmed_at": "2026-01-29T15:29:15.209Z",
- "created_at": "2026-01-29T15:29:15.209Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Marilyn Howe",
- "initials": "M H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 20231
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 63530,
- "created_at": "2026-01-29T15:29:18.369Z",
- "name": "Munch51",
- "description": "Veritatis in nemo. Doloremque culpa alias. Iste animi quidem.",
- "slug": "occaecati_dolore51",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Munch51"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "occaecati_dolore51"
], - "asset_group_id": 63530,
- "has_workflow_steps": false,
- "contribution_id": 37620,
- "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": 20243,
- "first_name": "Dewayne",
- "last_name": "Stroman",
- "created_at": "2026-01-29T15:29:18.013Z",
- "default_username": "stacy_runolfsson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dewayne Stroman",
- "initials": "D S",
- "username": null,
- "title": null,
- "user_id": 20243,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12781,
- "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-01-29T15:29:15.393Z",
- "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": 12782,
- "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-01-29T15:29:15.395Z",
- "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": 12783,
- "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-01-29T15:29:15.396Z",
- "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": 12784,
- "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-01-29T15:29:15.397Z",
- "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": 12785,
- "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-01-29T15:29:15.399Z",
- "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": 12786,
- "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-01-29T15:29:15.401Z",
- "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": 12787,
- "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-01-29T15:29:15.402Z",
- "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": 12788,
- "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-01-29T15:29:15.404Z",
- "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": 12781,
- "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-01-29T15:29:15.393Z",
- "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": 1450,
- "user_id": 20241,
- "guid": "6b22d410",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:18.388Z",
- "updated_at": "2026-01-29T15:29:18.388Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37621,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37621,
- "name": "officia",
- "text": "Qui sunt assumenda. Sit ducimus consequatur. Quo totam laudantium.",
- "featured": true,
- "slug": "aliquam_dolorem",
- "storage_folder_id": 63530,
- "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-01-29T15:29:18.381Z",
- "updated_at": "2026-01-29T15:29:18.381Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37621-officia",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63530,
- "created_at": "2026-01-29T15:29:18.369Z",
- "name": "Munch51",
- "description": "Veritatis in nemo. Doloremque culpa alias. Iste animi quidem.",
- "slug": "occaecati_dolore51",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Munch51"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "occaecati_dolore51"
], - "asset_group_id": 63530,
- "has_workflow_steps": false,
- "contribution_id": 37620,
- "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": 20243,
- "first_name": "Dewayne",
- "last_name": "Stroman",
- "created_at": "2026-01-29T15:29:18.013Z",
- "default_username": "stacy_runolfsson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dewayne Stroman",
- "initials": "D S",
- "username": null,
- "title": null,
- "user_id": 20243,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20241,
- "first_name": "Ma",
- "last_name": "Stark",
- "created_at": "2026-01-29T15:29:17.866Z",
- "default_username": "maxwellrowe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ma Stark",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 20241,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_ids": [ ]
}| id required | integer |
{- "id": 1444,
- "filename": "quo.jpg",
- "file_size": null,
- "guid": "c0f811d5-aae0-47b2-bf66-e0a5d554934d",
- "short_guid": "c0f811d5",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:29:28.377Z",
- "updated_at": "2026-01-29T15:29:28.377Z"
}, - "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": 1596,
- "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": 1453,
- "user_id": 20261,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:25.080Z",
- "updated_at": "2026-01-29T15:29:28.393Z",
- "s3_upload_id": null,
- "s3_upload_key": "1596/eaa524f3/c0f811d5-aae0-47b2-bf66-e0a5d554934d-quo.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:25.077Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12789,
- "submitted_at": "2026-01-29T03:29:25.077Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": "2026-01-29T15:29:28.389Z",
- "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": 20261,
- "first_name": "Cole",
- "last_name": "O'Hara",
- "created_at": "2026-01-29T15:29:23.886Z",
- "default_username": "amy_abernathy",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Cole O'Hara",
- "initials": "C O",
- "username": null,
- "title": null,
- "user_id": 20261,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "nihil-maxime54",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 20252,
- "first_name": "Arianna",
- "last_name": "Roberts",
- "default_username": "esta_olson",
- "confirmed_at": "2026-01-29T15:29:21.279Z",
- "created_at": "2026-01-29T15:29:21.280Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Arianna Roberts",
- "initials": "A R",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 20252
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 63592,
- "created_at": "2026-01-29T15:29:25.058Z",
- "name": "Chagall54",
- "description": "Sed excepturi quos. Sunt quae impedit. Quo voluptatum accusamus.",
- "slug": "nihil-maxime54",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Chagall54"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "nihil-maxime54"
], - "asset_group_id": 63592,
- "has_workflow_steps": false,
- "contribution_id": 37660,
- "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": 20264,
- "first_name": "Contessa",
- "last_name": "Bogisich",
- "created_at": "2026-01-29T15:29:24.582Z",
- "default_username": "thalia_reichel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Contessa Bogisich",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 20264,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12789,
- "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-01-29T15:29:21.467Z",
- "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": 12790,
- "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-01-29T15:29:21.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,
- "editable": true
}, - {
- "id": 12791,
- "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-01-29T15:29:21.470Z",
- "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": 12792,
- "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-01-29T15:29:21.472Z",
- "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": 12793,
- "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-01-29T15:29:21.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,
- "editable": true
}, - {
- "id": 12794,
- "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-01-29T15:29:21.475Z",
- "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": 12795,
- "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-01-29T15:29:21.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,
- "editable": true
}, - {
- "id": 12796,
- "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-01-29T15:29:21.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,
- "editable": true
}
], - "rights_package": {
- "id": 12789,
- "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-01-29T15:29:21.467Z",
- "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": 1453,
- "user_id": 20262,
- "guid": "eaa524f3",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:25.074Z",
- "updated_at": "2026-01-29T15:29:25.074Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37661,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37661,
- "name": "inventore",
- "text": "Optio aliquid beatae. Eos eum fugiat. Et voluptatem voluptate.",
- "featured": true,
- "slug": "id-deleniti",
- "storage_folder_id": 63592,
- "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-01-29T15:29:25.071Z",
- "updated_at": "2026-01-29T15:29:25.071Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37661-inventore",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63592,
- "created_at": "2026-01-29T15:29:25.058Z",
- "name": "Chagall54",
- "description": "Sed excepturi quos. Sunt quae impedit. Quo voluptatum accusamus.",
- "slug": "nihil-maxime54",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Chagall54"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "nihil-maxime54"
], - "asset_group_id": 63592,
- "has_workflow_steps": false,
- "contribution_id": 37660,
- "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": 20264,
- "first_name": "Contessa",
- "last_name": "Bogisich",
- "created_at": "2026-01-29T15:29:24.582Z",
- "default_username": "thalia_reichel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Contessa Bogisich",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 20264,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20262,
- "first_name": "Laurence",
- "last_name": "Mante",
- "created_at": "2026-01-29T15:29:24.322Z",
- "default_username": "jefferson_hilll",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Laurence Mante",
- "initials": "L M",
- "username": null,
- "title": null,
- "user_id": 20262,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_ids": [ ]
}| id required | integer |
{- "id": 1447,
- "filename": "sint.jpg",
- "file_size": null,
- "guid": "e38f7546-db0f-4ca3-9451-5bba117158bc",
- "short_guid": "e38f7546",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:29:34.780Z",
- "updated_at": "2026-01-29T15:29:34.780Z"
}, - "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": 1597,
- "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": 1456,
- "user_id": 20282,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:31.986Z",
- "updated_at": "2026-01-29T15:29:32.068Z",
- "s3_upload_id": null,
- "s3_upload_key": "1597/13d4dedd/e38f7546-db0f-4ca3-9451-5bba117158bc-sint.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:31.984Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12797,
- "submitted_at": "2026-01-29T03:29:31.984Z",
- "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": 20282,
- "first_name": "Demetrius",
- "last_name": "Lubowitz",
- "created_at": "2026-01-29T15:29:31.111Z",
- "default_username": "gaynelllemke",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Demetrius Lubowitz",
- "initials": "D L",
- "username": null,
- "title": null,
- "user_id": 20282,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "sit-velit57",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 63654,
- "created_at": "2026-01-29T15:29:31.971Z",
- "name": "Magritte57",
- "description": "Reprehenderit quisquam dicta. Laborum itaque animi. Est perferendis tempora.",
- "slug": "sit-velit57",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Magritte57"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "sit-velit57"
], - "asset_group_id": 63654,
- "has_workflow_steps": false,
- "contribution_id": 37700,
- "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": 20285,
- "first_name": "Roxana",
- "last_name": "Larson",
- "created_at": "2026-01-29T15:29:31.609Z",
- "default_username": "arron",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Roxana Larson",
- "initials": "R L",
- "username": null,
- "title": null,
- "user_id": 20285,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12797,
- "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-01-29T15:29:28.840Z",
- "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": 12798,
- "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-01-29T15:29:28.842Z",
- "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": 12799,
- "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-01-29T15:29:28.844Z",
- "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": 12800,
- "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-01-29T15:29:28.846Z",
- "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": 12801,
- "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-01-29T15:29:28.848Z",
- "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": 12802,
- "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-01-29T15:29:28.851Z",
- "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": 12803,
- "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-01-29T15:29:28.854Z",
- "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": 12804,
- "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-01-29T15:29:28.856Z",
- "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": 12797,
- "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-01-29T15:29:28.840Z",
- "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": 1456,
- "user_id": 20283,
- "guid": "13d4dedd",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:31.982Z",
- "updated_at": "2026-01-29T15:29:31.982Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37701,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37701,
- "name": "similique",
- "text": "Magni non nulla. Est ad commodi. Voluptates esse quos.",
- "featured": true,
- "slug": "rerum_vero",
- "storage_folder_id": 63654,
- "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-01-29T15:29:31.981Z",
- "updated_at": "2026-01-29T15:29:31.981Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37701-similique",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63654,
- "created_at": "2026-01-29T15:29:31.971Z",
- "name": "Magritte57",
- "description": "Reprehenderit quisquam dicta. Laborum itaque animi. Est perferendis tempora.",
- "slug": "sit-velit57",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Magritte57"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "sit-velit57"
], - "asset_group_id": 63654,
- "has_workflow_steps": false,
- "contribution_id": 37700,
- "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": 20285,
- "first_name": "Roxana",
- "last_name": "Larson",
- "created_at": "2026-01-29T15:29:31.609Z",
- "default_username": "arron",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Roxana Larson",
- "initials": "R L",
- "username": null,
- "title": null,
- "user_id": 20285,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20283,
- "first_name": "Eloise",
- "last_name": "Leuschke",
- "created_at": "2026-01-29T15:29:31.462Z",
- "default_username": "jacintofunk",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eloise Leuschke",
- "initials": "E L",
- "username": null,
- "title": null,
- "user_id": 20283,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_ids": [ ]
}Select the current Asset version by number.
| id required | integer |
| version required | integer Version |
{- "id": 1453,
- "filename": "magnam.jpg",
- "file_size": null,
- "guid": "1a550a04-d8da-4713-9171-8dabef875744",
- "short_guid": "1a550a04",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": 1598,
- "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": 1462,
- "user_id": 20315,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:41.997Z",
- "updated_at": "2026-01-29T15:29:42.488Z",
- "s3_upload_id": null,
- "s3_upload_key": "1598/5e6a1c84/1a550a04-d8da-4713-9171-8dabef875744-magnam.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:41.995Z",
- "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-01-29T03:29:41.995Z",
- "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": 20315,
- "first_name": "Marg",
- "last_name": "Walker",
- "created_at": "2026-01-29T15:29:41.102Z",
- "default_username": "luciano",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marg Walker",
- "initials": "M W",
- "username": null,
- "title": null,
- "user_id": 20315,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "qui_illum63",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 63749,
- "created_at": "2026-01-29T15:29:41.982Z",
- "name": "Edward Hopper63",
- "description": "Quia a tempora. Enim nihil quod. Eius velit sint.",
- "slug": "qui_illum63",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Edward Hopper63"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui_illum63"
], - "asset_group_id": 63749,
- "has_workflow_steps": false,
- "contribution_id": 37764,
- "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": 20318,
- "first_name": "Lonny",
- "last_name": "Williamson",
- "created_at": "2026-01-29T15:29:41.615Z",
- "default_username": "frances",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lonny Williamson",
- "initials": "L W",
- "username": null,
- "title": null,
- "user_id": 20318,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12805,
- "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-01-29T15:29:35.112Z",
- "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": 12806,
- "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-01-29T15:29:35.114Z",
- "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": 12807,
- "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-01-29T15:29:35.116Z",
- "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": 12808,
- "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-01-29T15:29:35.118Z",
- "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": 12809,
- "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-01-29T15:29:35.119Z",
- "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": 12810,
- "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-01-29T15:29:35.121Z",
- "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": 12811,
- "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-01-29T15:29:35.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,
- "editable": true
}, - {
- "id": 12812,
- "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-01-29T15:29:35.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,
- "editable": true
}
], - "upload": {
- "id": 1462,
- "user_id": 20316,
- "guid": "5e6a1c84",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:41.992Z",
- "updated_at": "2026-01-29T15:29:41.992Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37765,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37765,
- "name": "quo",
- "text": "Aut doloribus sit. Qui voluptatem consequatur. Inventore culpa dolorem.",
- "featured": true,
- "slug": "qui-repudiandae",
- "storage_folder_id": 63749,
- "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-01-29T15:29:41.991Z",
- "updated_at": "2026-01-29T15:29:41.991Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37765-quo",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63749,
- "created_at": "2026-01-29T15:29:41.982Z",
- "name": "Edward Hopper63",
- "description": "Quia a tempora. Enim nihil quod. Eius velit sint.",
- "slug": "qui_illum63",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Edward Hopper63"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui_illum63"
], - "asset_group_id": 63749,
- "has_workflow_steps": false,
- "contribution_id": 37764,
- "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": 20318,
- "first_name": "Lonny",
- "last_name": "Williamson",
- "created_at": "2026-01-29T15:29:41.615Z",
- "default_username": "frances",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lonny Williamson",
- "initials": "L W",
- "username": null,
- "title": null,
- "user_id": 20318,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20316,
- "first_name": "Trevor",
- "last_name": "Hane",
- "created_at": "2026-01-29T15:29:41.464Z",
- "default_username": "merrill_jacobson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Trevor Hane",
- "initials": "T H",
- "username": null,
- "title": null,
- "user_id": 20316,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "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": 1454,
- "filename": "et.jpg",
- "file_size": null,
- "guid": "d815477b-58bb-4828-9111-872d06b6315c",
- "short_guid": "d815477b",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": {
- "value": 1,
- "created_at": "2026-01-29T15:29:49.101Z",
- "updated_at": "2026-01-29T15:29:49.101Z"
}, - "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": 1599,
- "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": 1463,
- "user_id": 20328,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:29:46.235Z",
- "updated_at": "2026-01-29T15:29:49.360Z",
- "s3_upload_id": null,
- "s3_upload_key": "1599/812f478e/d815477b-58bb-4828-9111-872d06b6315c-et.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:29:46.233Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 12813,
- "submitted_at": "2026-01-29T03:29:46.233Z",
- "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": 20328,
- "first_name": "Ellis",
- "last_name": "Langworth",
- "created_at": "2026-01-29T15:29:45.317Z",
- "default_username": "riley",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ellis Langworth",
- "initials": "E L",
- "username": null,
- "title": null,
- "user_id": 20328,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "nostrum_et64",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 63789,
- "created_at": "2026-01-29T15:29:46.222Z",
- "name": "Pollock64",
- "description": "Fuga nihil doloremque. Natus odit eum. Nostrum iste commodi.",
- "slug": "nostrum_et64",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock64"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "nostrum_et64"
], - "asset_group_id": 63789,
- "has_workflow_steps": false,
- "contribution_id": 37788,
- "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": 20331,
- "first_name": "Ernesto",
- "last_name": "Ondricka",
- "created_at": "2026-01-29T15:29:45.850Z",
- "default_username": "preston_dubuque",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ernesto Ondricka",
- "initials": "E O",
- "username": null,
- "title": null,
- "user_id": 20331,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 12813,
- "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-01-29T15:29:42.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": 12814,
- "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-01-29T15:29:42.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": 12815,
- "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-01-29T15:29:42.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": 12816,
- "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-01-29T15:29:42.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": 12817,
- "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-01-29T15:29:42.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": 12818,
- "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-01-29T15:29:42.798Z",
- "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": 12819,
- "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-01-29T15:29:42.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
}, - {
- "id": 12820,
- "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-01-29T15:29:42.803Z",
- "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": 12813,
- "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-01-29T15:29:42.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,
- "contracts": [ ]
}, - "upload": {
- "id": 1463,
- "user_id": 20329,
- "guid": "812f478e",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:29:46.231Z",
- "updated_at": "2026-01-29T15:29:46.231Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 37789,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 37789,
- "name": "ut",
- "text": "Rerum ipsa voluptas. Impedit exercitationem molestiae. Velit deserunt est.",
- "featured": true,
- "slug": "commodi-tempora",
- "storage_folder_id": 63789,
- "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-01-29T15:29:46.230Z",
- "updated_at": "2026-01-29T15:29:46.230Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "assets_count": 1,
- "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": "37789-ut",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 63789,
- "created_at": "2026-01-29T15:29:46.222Z",
- "name": "Pollock64",
- "description": "Fuga nihil doloremque. Natus odit eum. Nostrum iste commodi.",
- "slug": "nostrum_et64",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock64"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "nostrum_et64"
], - "asset_group_id": 63789,
- "has_workflow_steps": false,
- "contribution_id": 37788,
- "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": 20331,
- "first_name": "Ernesto",
- "last_name": "Ondricka",
- "created_at": "2026-01-29T15:29:45.850Z",
- "default_username": "preston_dubuque",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ernesto Ondricka",
- "initials": "E O",
- "username": null,
- "title": null,
- "user_id": 20331,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 20329,
- "first_name": "Fernando",
- "last_name": "O'Connell",
- "created_at": "2026-01-29T15:29:45.695Z",
- "default_username": "gabriella",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Fernando O'Connell",
- "initials": "F O",
- "username": null,
- "title": null,
- "user_id": 20329,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_asset_ids": [
- 1455,
- 1456
], - "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) |
[- 1466
]| 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": 532,
- "name": "new-tag-1",
- "description": null,
- "list": "visible",
- "tag_id": 297,
- "tagged_at": "2026-01-29T15:30:55.430Z",
- "tag_updated_at": "2026-01-29T15:30:55.432Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "tagged_by": {
- "id": 20535,
- "first_name": "Graham",
- "last_name": "Hauck",
- "created_at": "2026-01-29T15:30:49.362Z",
- "default_username": "dagny",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Graham Hauck",
- "initials": "G H",
- "username": null,
- "title": null,
- "user_id": 20535,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 533,
- "name": "new-tag-2",
- "description": null,
- "list": "visible",
- "tag_id": 298,
- "tagged_at": "2026-01-29T15:30:55.438Z",
- "tag_updated_at": "2026-01-29T15:30:55.441Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "tagged_by": {
- "id": 20535,
- "first_name": "Graham",
- "last_name": "Hauck",
- "created_at": "2026-01-29T15:30:49.362Z",
- "default_username": "dagny",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Graham Hauck",
- "initials": "G H",
- "username": null,
- "title": null,
- "user_id": 20535,
- "lang": null,
- "notify_new_membership_requests": null
}
}
]
}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 Sort field (views_count, downloads_count, etc.) |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| Total-Entries | integer |
[- {
- "filename": "facilis.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 20649,
- "first_name": "Phebe",
- "last_name": "Mante",
- "default_username": "luanna",
- "confirmed_at": "2026-01-29T15:31:23.620Z",
- "created_at": "2026-01-29T15:31:23.620Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Phebe Mante",
- "initials": "P M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 20649
}, - "created_at": "2026-01-29T15:31:24.555Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "4004fc37-9118-4017-85c2-1be338bc6587",
- "id": 1504
}, - {
- "filename": "dolore.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 20653,
- "first_name": "Travis",
- "last_name": "Price",
- "default_username": "jamalskiles",
- "confirmed_at": "2026-01-29T15:31:24.873Z",
- "created_at": "2026-01-29T15:31:24.874Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Travis Price",
- "initials": "T P",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 20653
}, - "created_at": "2026-01-29T15:31:25.773Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "6f0937c3-340e-412a-b881-5216f129638e",
- "id": 1505
}, - {
- "filename": "ut.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 20657,
- "first_name": "Elanor",
- "last_name": "Hansen",
- "default_username": "lin",
- "confirmed_at": "2026-01-29T15:31:26.086Z",
- "created_at": "2026-01-29T15:31:26.087Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Elanor Hansen",
- "initials": "E H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 20657
}, - "created_at": "2026-01-29T15:31:26.963Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "af23d4d9-cd2e-45eb-9e9f-c416a3febaa7",
- "id": 1506
}
]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.
| current | integer Default: 1 Current page number |
| pageSize | integer Default: 25 Number of items per page |
| sortField | string Enum: "created_at" "updated_at" Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": "161379b2-f858-446c-a293-864ee00973b2",
- "aasm_state": "pending",
- "progress": null,
- "destroy_all": false,
- "action": "Bulk Asset Edit: Tags",
- "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": "e5d6b39e-d190-4c04-9a88-4a8fc884268f",
- "aasm_state": "pending",
- "progress": 0,
- "destroy_all": false,
- "action": "Bulk Asset Edit: Meta",
- "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": {
- "4817": {
- "name": "Custom Meta Field 165",
- "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 |
| page | integer Default: 1 Page number |
| Total-Entries | integer |
| assets | string Array of asset objects |
[- {
- "id": 1521,
- "filename": "quisquam.jpg",
- "file_size": null,
- "guid": "6155a17e-87d7-470c-a487-3fe9f7987bad",
- "short_guid": "6155a17e",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": 1625,
- "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": 1530,
- "user_id": 20803,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:32:10.810Z",
- "updated_at": "2026-01-29T15:32:10.885Z",
- "s3_upload_id": null,
- "s3_upload_key": "1625/f1dc4433/6155a17e-87d7-470c-a487-3fe9f7987bad-quisquam.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:32:10.809Z",
- "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-01-29T03:32:10.809Z",
- "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": 20803,
- "first_name": "Yessenia",
- "last_name": "Greenholt",
- "created_at": "2026-01-29T15:32:07.636Z",
- "default_username": "royal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Yessenia Greenholt",
- "initials": "Y G",
- "username": null,
- "title": null,
- "user_id": 20803,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "rerum_qui132",
- "tags": [ ]
}, - {
- "id": 1522,
- "filename": "earum.jpg",
- "file_size": null,
- "guid": "c5955822-c950-4814-a47e-d477663b3e5d",
- "short_guid": "c5955822",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": 1625,
- "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": 1531,
- "user_id": 20803,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:32:11.692Z",
- "updated_at": "2026-01-29T15:32:11.765Z",
- "s3_upload_id": null,
- "s3_upload_key": "1625/f8d16f3d/c5955822-c950-4814-a47e-d477663b3e5d-earum.jpg",
- "time_to_process": 0,
- "captured_at": "2026-01-28T15:32:11.691Z",
- "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-01-29T03:32:11.691Z",
- "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": 20803,
- "first_name": "Yessenia",
- "last_name": "Greenholt",
- "created_at": "2026-01-29T15:32:07.636Z",
- "default_username": "royal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Yessenia Greenholt",
- "initials": "Y G",
- "username": null,
- "title": null,
- "user_id": 20803,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "deserunt-aut133",
- "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": "77dc3cea-35b0-4c00-bfb6-a2a33594accd",
- "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": 65619,
- "created_at": "2026-01-29T15:32:47.704Z",
- "path_names": [
- "Rothko142"
], - "path_slugs": [
- "vero-quia142"
], - "slug": "vero-quia142",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 65619,
- "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": 1639,
- "organization_slug": "reilly-johns-and-ritchie",
- "user": {
- "id": 20932,
- "first_name": "Esta",
- "last_name": "Wuckert",
- "created_at": "2026-01-29T15:32:47.346Z",
- "default_username": "hugh",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Esta Wuckert",
- "initials": "E W",
- "username": null,
- "title": null,
- "user_id": 20932,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Rothko142",
- "description": "Praesentium ipsum perferendis. Suscipit nihil ut. Dignissimos iste corrupti."
}
]object |
{- "collection": {
- "name": "Test Collection",
- "description": "string",
- "parent_id": 65730,
- "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": 65731,
- "created_at": "2026-01-29T15:32:56.677Z",
- "path_names": [
- "Dali146",
- "Test Collection"
], - "path_slugs": [
- "molestias_reiciendis146",
- "test-collection"
], - "slug": "test-collection",
- "sandbox": false,
- "organizer": null,
- "type": "Collection",
- "has_children": false,
- "parent_id": 65730,
- "ancestor_ids": [
- 65730
], - "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 65731,
- "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": 1642,
- "organization_slug": "reichert-paucek-and-thompson",
- "user": {
- "id": 20954,
- "first_name": "Efrain",
- "last_name": "Stehr",
- "created_at": "2026-01-29T15:32:53.946Z",
- "default_username": "carlenaratke",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Efrain Stehr",
- "initials": "E S",
- "username": null,
- "title": null,
- "user_id": 20954,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 65660,
- "created_at": "2026-01-29T15:32:50.981Z",
- "path_names": [
- "Degas144"
], - "path_slugs": [
- "ut_rerum144"
], - "slug": "ut_rerum144",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 65660,
- "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": 1640,
- "organization_slug": "krajcik-hilpert-and-kertzmann",
- "user": {
- "id": 20943,
- "first_name": "Gerard",
- "last_name": "Hickle",
- "created_at": "2026-01-29T15:32:50.592Z",
- "default_username": "shayla",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gerard Hickle",
- "initials": "G H",
- "username": null,
- "title": null,
- "user_id": 20943,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Degas144",
- "description": "Autem enim dolore. Et nobis laudantium. Cupiditate rerum non."
}, - {
- "id": 65654,
- "created_at": "2026-01-29T15:32:50.586Z",
- "path_names": [
- "Donatello143"
], - "path_slugs": [
- "voluptas-in143"
], - "slug": "voluptas-in143",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 65654,
- "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": 1640,
- "organization_slug": "krajcik-hilpert-and-kertzmann",
- "user": {
- "id": 20942,
- "first_name": "Shane",
- "last_name": "Koss",
- "created_at": "2026-01-29T15:32:50.224Z",
- "default_username": "emily_larkin",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shane Koss",
- "initials": "S K",
- "username": null,
- "title": null,
- "user_id": 20942,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Donatello143",
- "description": "Nemo quaerat vel. Vel mollitia voluptas. Animi aliquam qui."
}
]| id required | integer |
{- "id": 65695,
- "created_at": "2026-01-29T15:32:53.901Z",
- "path_names": [
- "Michelangelo145"
], - "path_slugs": [
- "dolore-ipsum145"
], - "slug": "dolore-ipsum145",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 65695,
- "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": 1641,
- "organization_slug": "jacobsonmurazik",
- "user": {
- "id": 20953,
- "first_name": "Silvia",
- "last_name": "Hartmann",
- "created_at": "2026-01-29T15:32:53.513Z",
- "default_username": "deweyoreilly",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Silvia Hartmann",
- "initials": "S H",
- "username": null,
- "title": null,
- "user_id": 20953,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Michelangelo145",
- "description": "Expedita cupiditate ipsum. Dolores delectus aspernatur. Aut quia eaque.",
- "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": 65812,
- "created_at": "2026-01-29T15:33:03.633Z",
- "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": 65812,
- "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": 1644,
- "organization_slug": "bechtelar-and-sons",
- "user": {
- "id": 20987,
- "first_name": "William",
- "last_name": "Walter",
- "created_at": "2026-01-29T15:33:03.277Z",
- "default_username": "everette",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "William Walter",
- "initials": "W W",
- "username": null,
- "title": null,
- "user_id": 20987,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 347,
- "asset_group_id": 65766,
- "asset_id": 1525,
- "user_id": 20964,
- "created_at": "2026-01-29T15:33:00.812Z",
- "updated_at": "2026-01-29T15:33:00.812Z",
- "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": 65882,
- "created_at": "2026-01-29T15:33:09.252Z",
- "path_names": [
- "Warhol151"
], - "path_slugs": [
- "expedita-sunt151"
], - "slug": "expedita-sunt151",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 65882,
- "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": 1646,
- "organization_slug": "hansen-anderson-and-fisher",
- "user": {
- "id": 21007,
- "first_name": "Rich",
- "last_name": "Toy",
- "created_at": "2026-01-29T15:33:08.891Z",
- "default_username": "mauromosciski",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Rich Toy",
- "initials": "R T",
- "username": null,
- "title": null,
- "user_id": 21007,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Warhol151",
- "description": "Inventore quos et. Placeat suscipit libero. Explicabo debitis dolorem.",
- "commentable": true,
- "commentable_id": 65882,
- "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": 65917,
- "asset_group_id": 65917,
- "sub_type": null,
- "visible_assets_count": 0,
- "visible_assets_size": 0,
- "name": "El Greco152"
}
]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": 11,
- "text": "This is a test comment",
- "html": "<p>This is a test comment</p>\n",
- "edited_at": null,
- "what_id": 65947,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-01-29T15:33:14.860Z",
- "updated_at": "2026-01-29T15:33:14.860Z",
- "user": {
- "id": 21018,
- "first_name": "Rossie",
- "last_name": "Braun",
- "default_username": "kristy",
- "confirmed_at": "2026-01-29T15:33:12.288Z",
- "created_at": "2026-01-29T15:33:12.289Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Rossie Braun",
- "initials": "R B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21018,
- "username": "kristy",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Joan Miro153",
- "id": 65947,
- "slug": "65947-vel_non153"
}
}
]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": 13,
- "text": "Great work on this lightbox!",
- "html": "<p>Great work on this lightbox!</p>\n",
- "edited_at": null,
- "what_id": 65977,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-01-29T15:33:17.467Z",
- "updated_at": "2026-01-29T15:33:17.467Z",
- "user": {
- "id": 21027,
- "first_name": "Spring",
- "last_name": "Stokes",
- "default_username": "yuriko_sawayn",
- "confirmed_at": "2026-01-29T15:33:14.893Z",
- "created_at": "2026-01-29T15:33:14.894Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Spring Stokes",
- "initials": "S S",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21027,
- "username": "yuriko_sawayn",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Michelangelo154",
- "id": 65977,
- "slug": "65977-blanditiis_alias154"
}
}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": 14,
- "text": "Updated comment text",
- "html": "<p>Updated comment text</p>\n",
- "edited_at": "2026-01-29T15:33:20.107Z",
- "what_id": 66007,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-01-29T15:33:20.088Z",
- "updated_at": "2026-01-29T15:33:20.109Z",
- "user": {
- "id": 21036,
- "first_name": "Eugene",
- "last_name": "Beier",
- "default_username": "jacinto",
- "confirmed_at": "2026-01-29T15:33:17.480Z",
- "created_at": "2026-01-29T15:33:17.481Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Eugene Beier",
- "initials": "E B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21036,
- "username": "jacinto",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Botticelli155",
- "id": 66007,
- "slug": "66007-perspiciatis_qui155"
}
}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 |
| page | integer Page number |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 39168,
- "name": "nam",
- "text": "Est voluptas dignissimos. Reiciendis enim repellat. Expedita beatae deleniti.",
- "featured": true,
- "slug": "quia_dolor",
- "storage_folder_id": 66067,
- "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-01-29T15:33:25.019Z",
- "updated_at": "2026-01-29T15:33:25.019Z",
- "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": "39168-nam",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66067,
- "created_at": "2026-01-29T15:33:25.010Z",
- "name": "Klimt157",
- "description": "Eos ratione magni. Dignissimos sed facere. Et rerum deleniti.",
- "slug": "voluptas_recusandae157",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Klimt157"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "voluptas_recusandae157"
], - "asset_group_id": 66067,
- "has_workflow_steps": false,
- "contribution_id": 39167,
- "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": 21054,
- "first_name": "Lila",
- "last_name": "Waters",
- "created_at": "2026-01-29T15:33:22.674Z",
- "default_username": "randalzemlak",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lila Waters",
- "initials": "L W",
- "username": null,
- "title": null,
- "user_id": 21054,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 39295,
- "name": "New Upload Link",
- "text": null,
- "featured": true,
- "slug": "new-upload-link",
- "storage_folder_id": 66277,
- "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-01-29T15:33:41.661Z",
- "updated_at": "2026-01-29T15:33:41.661Z",
- "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": "39295-new-upload-link",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66277,
- "created_at": "2026-01-29T15:33:41.640Z",
- "name": "Escher164",
- "description": "Sint non deserunt. Velit cumque sequi. Autem in alias.",
- "slug": "quia-dolores164",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Escher164"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "quia-dolores164"
], - "asset_group_id": 66277,
- "has_workflow_steps": false,
- "contribution_id": 39293,
- "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": 21117,
- "first_name": "Gracie",
- "last_name": "Tillman",
- "created_at": "2026-01-29T15:33:39.304Z",
- "default_username": "jenninehowell",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gracie Tillman",
- "initials": "G T",
- "username": null,
- "title": null,
- "user_id": 21117,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}Returns featured contributions that are displayed on the organization's public page.
[- {
- "enabled": true,
- "id": 39186,
- "name": "sit",
- "text": "Qui magnam ad. Eaque impedit consequatur. Aut incidunt debitis.",
- "featured": true,
- "slug": "reprehenderit_dicta",
- "storage_folder_id": 66097,
- "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-01-29T15:33:27.363Z",
- "updated_at": "2026-01-29T15:33:27.363Z",
- "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": "39186-sit",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66097,
- "created_at": "2026-01-29T15:33:27.355Z",
- "name": "Edward Hopper158",
- "description": "Voluptates et illo. Et enim hic. Autem non et.",
- "slug": "et_ut158",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Edward Hopper158"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "et_ut158"
], - "asset_group_id": 66097,
- "has_workflow_steps": false,
- "contribution_id": 39185,
- "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": 21063,
- "first_name": "Edgar",
- "last_name": "Vandervort",
- "created_at": "2026-01-29T15:33:25.058Z",
- "default_username": "carolyne_lynch",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Edgar Vandervort",
- "initials": "E V",
- "username": null,
- "title": null,
- "user_id": 21063,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 39222,
- "name": "voluptas",
- "text": "Ad vitae laborum. Voluptatem facere aliquid. Qui rerum eum.",
- "featured": true,
- "slug": "atque_eaque",
- "storage_folder_id": 66157,
- "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-01-29T15:33:32.153Z",
- "updated_at": "2026-01-29T15:33:32.153Z",
- "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": "39222-voluptas",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66157,
- "created_at": "2026-01-29T15:33:32.146Z",
- "name": "Pollock160",
- "description": "Dolor aut accusamus. Unde et delectus. Et maiores ea.",
- "slug": "impedit_consequuntur160",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock160"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "impedit_consequuntur160"
], - "asset_group_id": 66157,
- "has_workflow_steps": false,
- "contribution_id": 39221,
- "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": 21081,
- "first_name": "Madalene",
- "last_name": "Ziemann",
- "created_at": "2026-01-29T15:33:29.744Z",
- "default_username": "verna",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Madalene Ziemann",
- "initials": "M Z",
- "username": null,
- "title": null,
- "user_id": 21081,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}
]Find a contribution by its URL slug.
| slug required | string Contribution URL slug |
{- "enabled": true,
- "id": 39258,
- "name": "enim",
- "text": "Rerum laudantium odit. Dolorem quia voluptatibus. Voluptate et quaerat.",
- "featured": true,
- "slug": "ipsa_est",
- "storage_folder_id": 66217,
- "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-01-29T15:33:36.925Z",
- "updated_at": "2026-01-29T15:33:36.925Z",
- "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": "39258-enim",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66217,
- "created_at": "2026-01-29T15:33:36.917Z",
- "name": "Rembrandt162",
- "description": "Ut cum consequuntur. Quam incidunt iure. Voluptate at aut.",
- "slug": "sit_consequatur162",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Rembrandt162"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "sit_consequatur162"
], - "asset_group_id": 66217,
- "has_workflow_steps": false,
- "contribution_id": 39257,
- "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": 21099,
- "first_name": "Jeanine",
- "last_name": "Hartmann",
- "created_at": "2026-01-29T15:33:34.537Z",
- "default_username": "dale",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeanine Hartmann",
- "initials": "J H",
- "username": null,
- "title": null,
- "user_id": 21099,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 39276,
- "name": "velit",
- "text": "Minus expedita quisquam. Beatae voluptas sit. Excepturi adipisci incidunt.",
- "featured": true,
- "slug": "provident-eaque",
- "storage_folder_id": 66247,
- "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-01-29T15:33:39.276Z",
- "updated_at": "2026-01-29T15:33:39.276Z",
- "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": "39276-velit",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66247,
- "created_at": "2026-01-29T15:33:39.267Z",
- "name": "Seurat163",
- "description": "Et sunt dolores. Est odio consequuntur. Est repellat accusantium.",
- "slug": "deserunt_reprehenderit163",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat163"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "deserunt_reprehenderit163"
], - "asset_group_id": 66247,
- "has_workflow_steps": false,
- "contribution_id": 39275,
- "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": 21108,
- "first_name": "Milo",
- "last_name": "Weimann",
- "created_at": "2026-01-29T15:33:36.954Z",
- "default_username": "otto",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Milo Weimann",
- "initials": "M W",
- "username": null,
- "title": null,
- "user_id": 21108,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 39313,
- "name": "Updated Contribution Name",
- "text": "Vel est maiores. Est delectus iusto. Magnam distinctio commodi.",
- "featured": true,
- "slug": "aut-vero",
- "storage_folder_id": 66307,
- "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-01-29T15:33:44.050Z",
- "updated_at": "2026-01-29T15:33:44.062Z",
- "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": "39313-updated-contribution-name",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 66307,
- "created_at": "2026-01-29T15:33:44.044Z",
- "name": "Joan Miro165",
- "description": "Non soluta et. Natus iure voluptatem. Neque ex quae.",
- "slug": "aut_qui165",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro165"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "aut_qui165"
], - "asset_group_id": 66307,
- "has_workflow_steps": false,
- "contribution_id": 39312,
- "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": 21126,
- "first_name": "Angella",
- "last_name": "Gerlach",
- "created_at": "2026-01-29T15:33:41.680Z",
- "default_username": "gene_lueilwitz",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Angella Gerlach",
- "initials": "A G",
- "username": null,
- "title": null,
- "user_id": 21126,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 51,
- "user_id": 21198,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 96,
- "height": 994,
- "position": 0,
- "created_at": "2026-01-29T15:34:03.203Z",
- "updated_at": "2026-01-29T15:34:03.203Z",
- "closest_size": "medium"
}
]Create a new crop preset for the organization.
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "id": 54,
- "organization_id": 1670,
- "user_id": 21216,
- "enabled": true,
- "name": "Social Media",
- "width": 1200,
- "height": 630,
- "position": 1,
- "created_at": "2026-01-29T15:34:07.939Z",
- "updated_at": "2026-01-29T15:34:07.939Z"
}Get details of a specific crop preset.
| id required | integer |
{- "id": 52,
- "user_id": 21207,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 150,
- "height": 343,
- "position": 0,
- "created_at": "2026-01-29T15:34:05.573Z",
- "updated_at": "2026-01-29T15:34:05.573Z",
- "closest_size": "small"
}Update a crop preset's settings.
| id required | integer |
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "organization_id": 1671,
- "name": "Updated Preset Name",
- "id": 55,
- "user_id": 21225,
- "enabled": true,
- "width": 827,
- "height": 966,
- "position": 0,
- "created_at": "2026-01-29T15:34:10.271Z",
- "updated_at": "2026-01-29T15:34:10.279Z"
}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": 4947,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 295",
- "description": null,
- "multi": false,
- "created_at": "2026-01-29T15:34:17.377Z",
- "updated_at": "2026-01-29T15:34:17.377Z",
- "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,
- "user": {
- "id": 21258,
- "first_name": "Taylor",
- "last_name": "Bayer",
- "created_at": "2026-01-29T15:34:17.294Z",
- "default_username": "perry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Taylor Bayer",
- "initials": "T B",
- "username": null,
- "title": null,
- "user_id": 21258,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 4948,
- "type": null,
- "free": true,
- "name": "Custom Meta Field 296",
- "description": null,
- "multi": false,
- "created_at": "2026-01-29T15:34:17.454Z",
- "updated_at": "2026-01-29T15:34:17.454Z",
- "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,
- "user": {
- "id": 21259,
- "first_name": "Jennell",
- "last_name": "McDermott",
- "created_at": "2026-01-29T15:34:17.382Z",
- "default_username": "deon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jennell McDermott",
- "initials": "J M",
- "username": null,
- "title": null,
- "user_id": 21259,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 4949,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 297",
- "description": null,
- "multi": true,
- "created_at": "2026-01-29T15:34:17.555Z",
- "updated_at": "2026-01-29T15:34:17.555Z",
- "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,
- "user": {
- "id": 21260,
- "first_name": "Juan",
- "last_name": "Ankunding",
- "created_at": "2026-01-29T15:34:17.459Z",
- "default_username": "huey",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Juan Ankunding",
- "initials": "J A",
- "username": null,
- "title": null,
- "user_id": 21260,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [
- {
- "id": 3330,
- "text": "French Fries with Sausages 203",
- "date": null,
- "color_label": null
}, - {
- "id": 3331,
- "text": "French Toast 204",
- "date": null,
- "color_label": null
}
]
}, - {
- "id": 4950,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-01-29T15:34:17.562Z",
- "updated_at": "2026-01-29T15:34:17.562Z",
- "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,
- "user": {
- "id": 21252,
- "first_name": "Kimberlie",
- "last_name": "Russel",
- "created_at": "2026-01-29T15:34:15.122Z",
- "default_username": "ermelindarunolfsson",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kimberlie Russel",
- "initials": "K R",
- "username": null,
- "title": null,
- "user_id": 21252,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "custom_meta",
- "auto_run": true,
- "asset_types": [
- "string"
], - "minimum_role_level": "string",
- "custom_meta_values_attributes": [
- { }
]
}
}{- "id": 4963,
- "type": null,
- "free": true,
- "name": "Project Code",
- "description": "Internal project identifier",
- "multi": false,
- "created_at": "2026-01-29T15:34:24.537Z",
- "updated_at": "2026-01-29T15:34:24.537Z",
- "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,
- "user": {
- "id": 21279,
- "first_name": "Cruz",
- "last_name": "Romaguera",
- "created_at": "2026-01-29T15:34:22.221Z",
- "default_username": "gradyboehm",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Cruz Romaguera",
- "initials": "C R",
- "username": null,
- "title": null,
- "user_id": 21279,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 4958,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-01-29T15:34:22.203Z",
- "updated_at": "2026-01-29T15:34:22.203Z",
- "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,
- "user": {
- "id": 21270,
- "first_name": "Vinita",
- "last_name": "Nader",
- "created_at": "2026-01-29T15:34:19.933Z",
- "default_username": "cher",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Vinita Nader",
- "initials": "V N",
- "username": null,
- "title": null,
- "user_id": 21270,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 4972,
- "type": null,
- "free": false,
- "name": "Updated Category",
- "description": "Updated description",
- "multi": false,
- "created_at": "2026-01-29T15:34:29.224Z",
- "updated_at": "2026-01-29T15:34:29.234Z",
- "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,
- "user": {
- "id": 21297,
- "first_name": "Darnell",
- "last_name": "Crona",
- "created_at": "2026-01-29T15:34:26.892Z",
- "default_username": "rebekah",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Darnell Crona",
- "initials": "D C",
- "username": null,
- "title": null,
- "user_id": 21297,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}Export a custom meta field's configuration as JSON for backup or importing into another organization.
| id required | integer |
| 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,
- "custom_meta_values": [ ],
- "exported_at": "2026-01-29T15:34:34Z",
- "version": 1
}Import a custom meta field configuration from JSON (previously exported).
| settings required | string Field configuration JSON |
{- "id": 4985,
- "type": null,
- "free": true,
- "name": "Imported Field",
- "description": "Imported from another org",
- "multi": false,
- "created_at": "2026-01-29T15:34:36.451Z",
- "updated_at": "2026-01-29T15:34:36.451Z",
- "number": 5,
- "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": 5,
- "notes": null,
- "minimum_role_level": null,
- "user": {
- "id": 21324,
- "first_name": "Sebastian",
- "last_name": "Gulgowski",
- "created_at": "2026-01-29T15:34:34.025Z",
- "default_username": "suzannaheaney",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sebastian Gulgowski",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 21324,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}Get custom meta fields configured for access requests (owner_type: AccessRequest).
[- {
- "id": 4990,
- "type": null,
- "free": false,
- "name": "Request Purpose",
- "description": null,
- "multi": false,
- "created_at": "2026-01-29T15:34:38.852Z",
- "updated_at": "2026-01-29T15:34:38.852Z",
- "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,
- "user": {
- "id": 21333,
- "first_name": "Bo",
- "last_name": "Wolf",
- "created_at": "2026-01-29T15:34:36.461Z",
- "default_username": "gilberte",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bo Wolf",
- "initials": "B W",
- "username": null,
- "title": null,
- "user_id": 21333,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": "e3c30edac839e8a1c6945aa4af09ac62",
- "filename": "wunsch-inc-mediagraph-download-#21.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": 1729,
- "organization_id": 1686,
- "user_id": 21381,
- "name": "All",
- "position": 1,
- "created_at": "2026-01-29T15:34:53.522Z",
- "updated_at": "2026-01-29T15:34:53.522Z",
- "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": 1730,
- "organization_id": 1686,
- "user_id": 21376,
- "name": "voluptatem",
- "position": 2,
- "created_at": "2026-01-29T15:34:53.780Z",
- "updated_at": "2026-01-29T15:34:53.780Z",
- "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": 1735,
- "organization_id": 1688,
- "user_id": 21394,
- "name": "My Saved Filters",
- "filters": null,
- "position": 3,
- "created_at": "2026-01-29T15:34:58.846Z",
- "updated_at": "2026-01-29T15:34:58.846Z"
}Get details of a specific filter group.
| id required | integer |
{- "id": 1732,
- "organization_id": 1687,
- "user_id": 21385,
- "name": "aut",
- "position": 2,
- "created_at": "2026-01-29T15:34:56.303Z",
- "updated_at": "2026-01-29T15:34:56.303Z",
- "filters": [ ]
}Update a filter group configuration.
| id required | integer |
object |
{- "filter_group": {
- "name": "string",
- "filter_order": [
- "string"
]
}
}{- "organization_id": 1689,
- "name": "Updated Filter Group",
- "id": 1737,
- "user_id": 21403,
- "filters": [ ],
- "position": 2,
- "created_at": "2026-01-29T15:35:01.247Z",
- "updated_at": "2026-01-29T15:35:01.257Z"
}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 |
| page | integer Page number |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 58,
- "note": null,
- "created_at": "2026-01-29T15:35:10.902Z",
- "updated_at": "2026-01-29T15:35:10.902Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": 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": 65,
- "user_id": 21493,
- "organization_id": 1699,
- "membership_id": null,
- "aasm_state": "pending",
- "token": "34c440bf6085692c975f27ca574b9728",
- "accepted_at": null,
- "created_at": "2026-01-29T15:35:26.698Z",
- "updated_at": "2026-01-29T15:35:26.698Z",
- "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": 59,
- "note": null,
- "created_at": "2026-01-29T15:35:13.293Z",
- "updated_at": "2026-01-29T15:35:13.293Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": 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": 66,
- "note": "Updated note",
- "created_at": "2026-01-29T15:35:29.225Z",
- "updated_at": "2026-01-29T15:35:29.294Z",
- "aasm_state": "pending",
- "role_level": "global_library",
- "role_level_name": "Global Library",
- "existing_user_id": 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": 60,
- "note": null,
- "created_at": "2026-01-29T15:35:15.783Z",
- "updated_at": "2026-01-29T15:35:15.783Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 21457,
- "first_name": "Virgina",
- "last_name": "Halvorson",
- "default_username": "stefan",
- "confirmed_at": "2026-01-29T15:35:13.362Z",
- "created_at": "2026-01-29T15:35:13.362Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Virgina Halvorson",
- "initials": "V H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21457
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true,
- "token": "37b86f718603749bf9db98df055fa2fd",
- "still_valid": true,
- "organization": {
- "id": 1695,
- "title": "Nitzsche, Reynolds and Koch",
- "domain": null,
- "slug": "nitzsche-reynolds-and-koch",
- "created_at": "2026-01-29T15:35:13.435Z",
- "updated_at": "2026-01-29T15:35:15.453Z",
- "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": "trialing",
- "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": "d19ca1b2",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-02-28T15:35:15.000Z",
- "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": [ ],
- "user": {
- "id": 21457,
- "first_name": "Virgina",
- "last_name": "Halvorson",
- "created_at": "2026-01-29T15:35:13.362Z",
- "default_username": "stefan",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Virgina Halvorson",
- "initials": "V H",
- "username": null,
- "title": null,
- "user_id": 21457,
- "lang": null,
- "notify_new_membership_requests": null
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_25",
- "stripe_subscription_id": "test_su_26",
- "bedrock_aws_key": null,
- "bedrock_aws_secret": null,
- "bedrock_aws_region": null,
- "members_with_grant_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-01-29T15:35:34.926Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67575,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67575,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67575,
- "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": 1703,
- "access_request_id": null,
- "user": {
- "id": 21529,
- "first_name": "Jeane",
- "last_name": "Franecki",
- "created_at": "2026-01-29T15:35:34.659Z",
- "default_username": "arden",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeane Franecki",
- "initials": "J F",
- "username": null,
- "title": null,
- "user_id": 21529,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67575-11652-my-first-lightbox",
- "id": 35208,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "35208-11652-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-01-29T15:35:34.983Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 67578,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 67578,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 67578,
- "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": 1703,
- "access_request_id": null,
- "user": {
- "id": 21529,
- "first_name": "Jeane",
- "last_name": "Franecki",
- "created_at": "2026-01-29T15:35:34.659Z",
- "default_username": "arden",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeane Franecki",
- "initials": "J F",
- "username": null,
- "title": null,
- "user_id": 21529,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67578-11652-shared-with-me",
- "id": 35209,
- "path_names": [
- "Shared with me"
], - "path_slugs": [
- "35209-11652-shared-with-me"
], - "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-01-29T15:35:34.994Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 67579,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 67579,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 67579,
- "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": 1703,
- "access_request_id": null,
- "user": {
- "id": 21529,
- "first_name": "Jeane",
- "last_name": "Franecki",
- "created_at": "2026-01-29T15:35:34.659Z",
- "default_username": "arden",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeane Franecki",
- "initials": "J F",
- "username": null,
- "title": null,
- "user_id": 21529,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67579-11652-archive",
- "id": 35210,
- "path_names": [
- "Archive"
], - "path_slugs": [
- "35210-11652-archive"
], - "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": "Klimt171",
- "sub_type": null,
- "description": "Accusamus odit quas. Tempora necessitatibus eos. Magnam aut quo.",
- "created_at": "2026-01-29T15:35:37.152Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67600,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67600,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67600,
- "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": 1703,
- "access_request_id": null,
- "user": {
- "id": 21529,
- "first_name": "Jeane",
- "last_name": "Franecki",
- "created_at": "2026-01-29T15:35:34.659Z",
- "default_username": "arden",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeane Franecki",
- "initials": "J F",
- "username": null,
- "title": null,
- "user_id": 21529,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67600-nihil-similique171",
- "id": 35223,
- "path_names": [
- "Klimt171"
], - "path_slugs": [
- "35223-nihil-similique171"
], - "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-01-29T15:35:54.353Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67791,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67791,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67791,
- "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": 1709,
- "access_request_id": null,
- "user": {
- "id": 21583,
- "first_name": "Burton",
- "last_name": "Robel",
- "created_at": "2026-01-29T15:35:51.987Z",
- "default_username": "ardith_jaskolski",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Burton Robel",
- "initials": "B R",
- "username": null,
- "title": null,
- "user_id": 21583,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67791-my-new-lightbox",
- "id": 35322,
- "path_names": [
- "My New Lightbox"
], - "path_slugs": [
- "35322-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": [
- "67791-my-new-lightbox"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 21583,
- "first_name": "Burton",
- "last_name": "Robel",
- "created_at": "2026-01-29T15:35:51.987Z",
- "default_username": "ardith_jaskolski",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Burton Robel",
- "initials": "B R",
- "username": null,
- "title": null,
- "user_id": 21583,
- "lang": null,
- "notify_new_membership_requests": null
}
], - "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-01-29T15:35:37.584Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 67609,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 67609,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 67609,
- "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": 1704,
- "access_request_id": null,
- "user": {
- "id": 21538,
- "first_name": "Wm",
- "last_name": "Ullrich",
- "created_at": "2026-01-29T15:35:37.291Z",
- "default_username": "mitchel_grimes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wm Ullrich",
- "initials": "W U",
- "username": null,
- "title": null,
- "user_id": 21538,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67609-11657-archive",
- "id": 35226,
- "path_names": [
- "Archive"
], - "path_slugs": [
- "35226-11657-archive"
], - "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": "Donatello173",
- "sub_type": null,
- "description": "Unde rerum rem. Eveniet fugiat reiciendis. Commodi ratione tempore.",
- "created_at": "2026-01-29T15:35:39.844Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67631,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67631,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67631,
- "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": 1704,
- "access_request_id": null,
- "user": {
- "id": 21538,
- "first_name": "Wm",
- "last_name": "Ullrich",
- "created_at": "2026-01-29T15:35:37.291Z",
- "default_username": "mitchel_grimes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wm Ullrich",
- "initials": "W U",
- "username": null,
- "title": null,
- "user_id": 21538,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67631-in-excepturi173",
- "id": 35240,
- "path_names": [
- "Donatello173"
], - "path_slugs": [
- "35240-in-excepturi173"
], - "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": "Michelangelo172",
- "sub_type": null,
- "description": "Aperiam aut numquam. Perferendis velit quidem. Et numquam optio.",
- "created_at": "2026-01-29T15:35:39.749Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67630,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67630,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67630,
- "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": 1704,
- "access_request_id": null,
- "user": {
- "id": 21538,
- "first_name": "Wm",
- "last_name": "Ullrich",
- "created_at": "2026-01-29T15:35:37.291Z",
- "default_username": "mitchel_grimes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wm Ullrich",
- "initials": "W U",
- "username": null,
- "title": null,
- "user_id": 21538,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67630-at-omnis172",
- "id": 35239,
- "path_names": [
- "Michelangelo172"
], - "path_slugs": [
- "35239-at-omnis172"
], - "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-01-29T15:35:37.536Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67605,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67605,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67605,
- "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": 1704,
- "access_request_id": null,
- "user": {
- "id": 21538,
- "first_name": "Wm",
- "last_name": "Ullrich",
- "created_at": "2026-01-29T15:35:37.291Z",
- "default_username": "mitchel_grimes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wm Ullrich",
- "initials": "W U",
- "username": null,
- "title": null,
- "user_id": 21538,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67605-11657-my-first-lightbox",
- "id": 35224,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "35224-11657-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-01-29T15:35:37.578Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 67608,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 67608,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 67608,
- "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": 1704,
- "access_request_id": null,
- "user": {
- "id": 21538,
- "first_name": "Wm",
- "last_name": "Ullrich",
- "created_at": "2026-01-29T15:35:37.291Z",
- "default_username": "mitchel_grimes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wm Ullrich",
- "initials": "W U",
- "username": null,
- "title": null,
- "user_id": 21538,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67608-11657-shared-with-me",
- "id": 35225,
- "path_names": [
- "Shared with me"
], - "path_slugs": [
- "35225-11657-shared-with-me"
], - "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": "Paul Klee184",
- "sub_type": null,
- "description": "Error velit dignissimos. Cumque maiores odit. Eos harum voluptas.",
- "created_at": "2026-01-29T15:35:47.845Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 67729,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 67729,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 67729,
- "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": 1707,
- "access_request_id": null,
- "user": {
- "id": 21565,
- "first_name": "Daphne",
- "last_name": "Lesch",
- "created_at": "2026-01-29T15:35:45.380Z",
- "default_username": "matilde",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Daphne Lesch",
- "initials": "D L",
- "username": null,
- "title": null,
- "user_id": 21565,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67729-laborum_minima184",
- "id": 35290,
- "path_names": [
- "Paul Klee184"
], - "path_slugs": [
- "35290-laborum_minima184"
], - "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": [
- "67729-laborum_minima184"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 21565,
- "first_name": "Daphne",
- "last_name": "Lesch",
- "created_at": "2026-01-29T15:35:45.380Z",
- "default_username": "matilde",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Daphne Lesch",
- "initials": "D L",
- "username": null,
- "title": null,
- "user_id": 21565,
- "lang": null,
- "notify_new_membership_requests": null
}
], - "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": 35338,
- "name": "Updated Lightbox Name",
- "sub_type": null,
- "description": "Cumque minus ducimus. Quasi quaerat ut. Voluptas velit earum.",
- "created_at": "2026-01-29T15:35:57.317Z",
- "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": 67821,
- "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": 21592,
- "first_name": "Ian",
- "last_name": "Donnelly",
- "created_at": "2026-01-29T15:35:54.456Z",
- "default_username": "rossana",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ian Donnelly",
- "initials": "I D",
- "username": null,
- "title": null,
- "user_id": 21592,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "67821-updated-lightbox-name",
- "asset_group_memberships_attributes": [
- {
- "id": 35338,
- "role": "viewer",
- "assets_count": 0,
- "user": {
- "id": 21592,
- "first_name": "Ian",
- "last_name": "Donnelly",
- "created_at": "2026-01-29T15:35:54.456Z",
- "default_username": "rossana",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ian Donnelly",
- "initials": "I D",
- "username": null,
- "title": null,
- "user_id": 21592,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 11710,
- "created_at": "2026-01-29T15:36:07.253Z",
- "updated_at": "2026-01-29T15:36:07.253Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21631,
- "first_name": "Darrin",
- "last_name": "Stark",
- "default_username": "claudine",
- "confirmed_at": "2026-01-29T15:36:07.180Z",
- "created_at": "2026-01-29T15:36:07.181Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Darrin Stark",
- "initials": "D S",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21631,
- "username": "claudine",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "D S",
- "tester": false,
- "username": "claudine",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Darrin Stark",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11709,
- "created_at": "2026-01-29T15:36:06.867Z",
- "updated_at": "2026-01-29T15:36:06.867Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21630,
- "first_name": "Heriberto",
- "last_name": "Grady",
- "default_username": "russell_pacocha",
- "confirmed_at": "2026-01-29T15:36:06.789Z",
- "created_at": "2026-01-29T15:36:06.790Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Heriberto Grady",
- "initials": "H G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21630,
- "username": "russell_pacocha",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "H G",
- "tester": false,
- "username": "russell_pacocha",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Heriberto Grady",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11708,
- "created_at": "2026-01-29T15:36:06.489Z",
- "updated_at": "2026-01-29T15:36:06.489Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21629,
- "first_name": "Genie",
- "last_name": "Rowe",
- "default_username": "bea_hackett",
- "confirmed_at": "2026-01-29T15:36:06.419Z",
- "created_at": "2026-01-29T15:36:06.420Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Genie Rowe",
- "initials": "G R",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21629,
- "username": "bea_hackett",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "G R",
- "tester": false,
- "username": "bea_hackett",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Genie Rowe",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11707,
- "created_at": "2026-01-29T15:36:05.745Z",
- "updated_at": "2026-01-29T15:36:05.745Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21624,
- "first_name": "Wuckert LLC Test",
- "last_name": "Global Tagger",
- "default_username": null,
- "confirmed_at": "2026-01-29T15:36:05.629Z",
- "created_at": "2026-01-29T15:36:05.632Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Wuckert LLC Test Global Tagger",
- "initials": "W G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21624,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_tagger",
- "role_level_name": "Global Tagger",
- "initials": "W G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Wuckert LLC Test Global Tagger",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11706,
- "created_at": "2026-01-29T15:36:05.324Z",
- "updated_at": "2026-01-29T15:36:05.324Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21623,
- "first_name": "Wuckert LLC Test",
- "last_name": "Global Library Manager",
- "default_username": null,
- "confirmed_at": "2026-01-29T15:36:05.250Z",
- "created_at": "2026-01-29T15:36:05.252Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Wuckert LLC Test Global Library Manager",
- "initials": "W G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21623,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_library",
- "role_level_name": "Global Library",
- "initials": "W G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Wuckert LLC Test Global Library Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11705,
- "created_at": "2026-01-29T15:36:04.964Z",
- "updated_at": "2026-01-29T15:36:04.964Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21622,
- "first_name": "Wuckert LLC Test",
- "last_name": "Global Content Manager",
- "default_username": null,
- "confirmed_at": "2026-01-29T15:36:04.889Z",
- "created_at": "2026-01-29T15:36:04.891Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Wuckert LLC Test Global Content Manager",
- "initials": "W G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21622,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_content",
- "role_level_name": "Global Content",
- "initials": "W G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Wuckert LLC Test Global Content Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11704,
- "created_at": "2026-01-29T15:36:04.598Z",
- "updated_at": "2026-01-29T15:36:04.598Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21621,
- "first_name": "Wuckert LLC Test",
- "last_name": "General Member",
- "default_username": null,
- "confirmed_at": "2026-01-29T15:36:04.526Z",
- "created_at": "2026-01-29T15:36:04.528Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Wuckert LLC Test General Member",
- "initials": "W G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21621,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "W G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Wuckert LLC Test General Member",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 11703,
- "created_at": "2026-01-29T15:36:04.239Z",
- "updated_at": "2026-01-29T15:36:04.239Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21620,
- "first_name": "Silva",
- "last_name": "Romaguera",
- "default_username": "lidia",
- "confirmed_at": "2026-01-29T15:36:03.915Z",
- "created_at": "2026-01-29T15:36:03.916Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Silva Romaguera",
- "initials": "S R",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21620,
- "username": "lidia",
- "notify_new_membership_requests": true
}, - "role_level": "admin",
- "role_level_name": "Admin",
- "initials": "S R",
- "tester": false,
- "username": "lidia",
- "title": null,
- "last_login_at": null,
- "is_owner": true,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Silva Romaguera",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": false
}
]| id required | integer |
{- "id": 11716,
- "created_at": "2026-01-29T15:36:10.432Z",
- "updated_at": "2026-01-29T15:36:10.432Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 21641,
- "first_name": "Cory",
- "last_name": "Feil",
- "default_username": "leia",
- "confirmed_at": "2026-01-29T15:36:10.357Z",
- "created_at": "2026-01-29T15:36:10.358Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Cory Feil",
- "initials": "C F",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21641,
- "username": "leia",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "C F",
- "tester": false,
- "username": "leia",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "name": "Cory Feil",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}| id required | integer |
object |
{- "membership": {
- "role_level": "global_library"
}
}{- "organization_id": 1715,
- "id": 11722,
- "user_id": 21651,
- "invite_id": null,
- "aasm_state": "active",
- "created_at": "2026-01-29T15:36:13.188Z",
- "updated_at": "2026-01-29T15:36:13.500Z",
- "role_level": "global_library",
- "username": "reid",
- "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,
- "name": "Aron Veum",
- "initials": "A V",
- "avatar_url": null,
- "user_group_ids": [ ]
}| id required | integer |
| status | string Enum: "active" "deactivated" Status |
{- "organization_id": 1716,
- "id": 11728,
- "user_id": 21661,
- "invite_id": null,
- "aasm_state": "deactivated",
- "created_at": "2026-01-29T15:36:16.304Z",
- "updated_at": "2026-01-29T15:36:16.615Z",
- "role_level": "general",
- "username": "raymonhegmann",
- "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,
- "name": "Delmer Stroman",
- "initials": "D S",
- "avatar_url": null,
- "user_group_ids": [ ]
}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 |
| page | integer Page number |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 55,
- "user": {
- "id": 21662,
- "first_name": "Gregg",
- "last_name": "Kuhic",
- "default_username": "kyle",
- "confirmed_at": "2026-01-29T15:36:16.715Z",
- "created_at": "2026-01-29T15:36:16.716Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Gregg Kuhic",
- "initials": "G K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21662
}, - "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-01-29T15:36:19.119Z",
- "updated_at": "2026-01-29T15:36:19.175Z",
- "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": 56,
- "user": {
- "id": 21671,
- "first_name": "Buster",
- "last_name": "Koelpin",
- "default_username": "james",
- "confirmed_at": "2026-01-29T15:36:19.237Z",
- "created_at": "2026-01-29T15:36:19.239Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Buster Koelpin",
- "initials": "B K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21671
}, - "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-01-29T15:36:21.860Z",
- "updated_at": "2026-01-29T15:36:21.903Z",
- "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": 57,
- "user": {
- "id": 21680,
- "first_name": "Erwin",
- "last_name": "Gorczany",
- "default_username": "ruebenlowe",
- "confirmed_at": "2026-01-29T15:36:21.953Z",
- "created_at": "2026-01-29T15:36:21.954Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Erwin Gorczany",
- "initials": "E G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21680
}, - "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-01-29T15:36:24.333Z",
- "updated_at": "2026-01-29T15:36:24.416Z",
- "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": 58,
- "user": {
- "id": 21689,
- "first_name": "Gail",
- "last_name": "Gusikowski",
- "default_username": "olin",
- "confirmed_at": "2026-01-29T15:36:24.424Z",
- "created_at": "2026-01-29T15:36:24.425Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Gail Gusikowski",
- "initials": "G G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 21689
}, - "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-01-29T15:36:26.838Z",
- "updated_at": "2026-01-29T15:36:26.921Z",
- "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 |
| page | integer Page number |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 1726,
- "title": "Lind Inc",
- "domain": null,
- "slug": "lind-inc",
- "created_at": "2026-01-29T15:36:39.655Z",
- "updated_at": "2026-01-29T15:36:41.968Z",
- "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": "trialing",
- "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": "14c8a835",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-02-28T15:36:41.000Z",
- "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": [ ],
- "user": {
- "id": 21743,
- "first_name": "Veta",
- "last_name": "Mraz",
- "created_at": "2026-01-29T15:36:39.561Z",
- "default_username": "lawerence",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Veta Mraz",
- "initials": "V M",
- "username": null,
- "title": null,
- "user_id": 21743,
- "lang": null,
- "notify_new_membership_requests": null
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_17",
- "stripe_subscription_id": "test_su_18",
- "bedrock_aws_key": null,
- "bedrock_aws_secret": null,
- "bedrock_aws_region": null,
- "members_with_grant_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": [
- "manage"
], - "subject": [
- "all"
], - "conditions": {
- "organization_id": 1726
}
}, - {
- "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": 1726
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "conditions": {
- "taxonomy": {
- "organization_id": 1726
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "conditions": {
- "tag": {
- "organization_id": 1726
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Organization"
], - "conditions": {
- "id": 1726
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "CropPreset"
], - "conditions": {
- "organization_id": 1726
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Content"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "User"
], - "inverted": true
}, - {
- "action": [
- "switch_to_user"
], - "subject": [
- "User"
]
}
]
}| id | integer Example: id=1727 The ID of the Organization |
{- "id": 1727,
- "title": "Cummerata-Bayer",
- "domain": null,
- "slug": "cummeratabayer",
- "created_at": "2026-01-29T15:36:42.414Z",
- "updated_at": "2026-01-29T15:36:44.423Z",
- "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": "trialing",
- "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": "8af5a679",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-02-28T15:36:44.000Z",
- "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": [ ],
- "user": {
- "id": 21752,
- "first_name": "Renita",
- "last_name": "Pouros",
- "created_at": "2026-01-29T15:36:42.331Z",
- "default_username": "javierlang",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Renita Pouros",
- "initials": "R P",
- "username": null,
- "title": null,
- "user_id": 21752,
- "lang": null,
- "notify_new_membership_requests": null
}, - "default_asset_modal_layout": "vertical",
- "is_owner": true,
- "role_level": "admin",
- "role_level_name": "Admin",
- "user_group_names": [ ],
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_21",
- "stripe_subscription_id": "test_su_22",
- "bedrock_aws_key": null,
- "bedrock_aws_secret": null,
- "bedrock_aws_region": null,
- "members_with_grant_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": [ ]
}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": 21289,
- "user_group_id": 3513,
- "asset_group_id": null,
- "user_id": 21761,
- "name": "Wolff, Gusikowski and Ullrich",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-01-29T15:36:47.395Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 3513,
- "name": "Photography",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 68382,
- "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-01-29T15:36:47.370Z",
- "updated_at": "2026-01-29T15:36:47.370Z",
- "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": 21289,
- "organization_id": 1728,
- "user_group_id": 3513,
- "asset_group_id": null,
- "user_id": 21761,
- "name": "Wolff, Gusikowski and Ullrich",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-01-29T15:36:47.395Z",
- "updated_at": "2026-01-29T15:36:47.395Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 21761,
- "first_name": "Mildred",
- "last_name": "Auer",
- "created_at": "2026-01-29T15:36:44.874Z",
- "default_username": "deirdre",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Mildred Auer",
- "initials": "M A",
- "username": null,
- "title": null,
- "user_id": 21761,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 68382,
- "created_at": "2026-01-29T15:36:47.383Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Photography Storage",
- "Group Uploads"
], - "parent_id": 68381,
- "ancestor_ids": [
- 68381
], - "visible_assets_count": null,
- "path_slugs": [
- "photography-storage",
- "group-uploads"
], - "asset_group_id": 68382,
- "has_workflow_steps": false,
- "contribution_id": 40457,
- "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": 21761,
- "first_name": "Mildred",
- "last_name": "Auer",
- "created_at": "2026-01-29T15:36:44.874Z",
- "default_username": "deirdre",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Mildred Auer",
- "initials": "M A",
- "username": null,
- "title": null,
- "user_id": 21761,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3513,
- "name": "Photography",
- "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": 21316,
- "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-01-29T15:36:52.715Z",
- "inherited": null,
- "federated_organization_id": null
}Get details of a specific permission.
| id required | integer |
{- "id": 21302,
- "user_group_id": 3516,
- "asset_group_id": null,
- "user_id": 21770,
- "name": "Heller, Schoen and Watsica",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-01-29T15:36:50.222Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 3516,
- "name": "Information 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": 68413,
- "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-01-29T15:36:50.203Z",
- "updated_at": "2026-01-29T15:36:50.203Z",
- "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": 21302,
- "organization_id": 1729,
- "user_group_id": 3516,
- "asset_group_id": null,
- "user_id": 21770,
- "name": "Heller, Schoen and Watsica",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-01-29T15:36:50.222Z",
- "updated_at": "2026-01-29T15:36:50.222Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 21770,
- "first_name": "Delois",
- "last_name": "Oberbrunner",
- "created_at": "2026-01-29T15:36:47.426Z",
- "default_username": "gerry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Delois Oberbrunner",
- "initials": "D O",
- "username": null,
- "title": null,
- "user_id": 21770,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 68413,
- "created_at": "2026-01-29T15:36:50.214Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Information Services Storage",
- "Group Uploads"
], - "parent_id": 68412,
- "ancestor_ids": [
- 68412
], - "visible_assets_count": null,
- "path_slugs": [
- "information-services-storage",
- "group-uploads"
], - "asset_group_id": 68413,
- "has_workflow_steps": false,
- "contribution_id": 40474,
- "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": 21770,
- "first_name": "Delois",
- "last_name": "Oberbrunner",
- "created_at": "2026-01-29T15:36:47.426Z",
- "default_username": "gerry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Delois Oberbrunner",
- "initials": "D O",
- "username": null,
- "title": null,
- "user_id": 21770,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3516,
- "name": "Information 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": 21329,
- "user_group_id": 3522,
- "asset_group_id": null,
- "user_id": 21788,
- "name": "Updated Permission Name",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-01-29T15:36:55.106Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 3522,
- "name": "Shipbuilding",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 68475,
- "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-01-29T15:36:55.086Z",
- "updated_at": "2026-01-29T15:36:55.086Z",
- "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": 21329,
- "organization_id": 1731,
- "user_group_id": 3522,
- "asset_group_id": null,
- "user_id": 21788,
- "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-01-29T15:36:55.106Z",
- "updated_at": "2026-01-29T15:36:55.114Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 21788,
- "first_name": "Gwyn",
- "last_name": "Grant",
- "created_at": "2026-01-29T15:36:52.722Z",
- "default_username": "estela",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gwyn Grant",
- "initials": "G G",
- "username": null,
- "title": null,
- "user_id": 21788,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 68475,
- "created_at": "2026-01-29T15:36:55.097Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Shipbuilding Storage",
- "Group Uploads"
], - "parent_id": 68474,
- "ancestor_ids": [
- 68474
], - "visible_assets_count": null,
- "path_slugs": [
- "shipbuilding-storage",
- "group-uploads"
], - "asset_group_id": 68475,
- "has_workflow_steps": false,
- "contribution_id": 40508,
- "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": 21788,
- "first_name": "Gwyn",
- "last_name": "Grant",
- "created_at": "2026-01-29T15:36:52.722Z",
- "default_username": "estela",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gwyn Grant",
- "initials": "G G",
- "username": null,
- "title": null,
- "user_id": 21788,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3522,
- "name": "Shipbuilding",
- "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.
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": 1582,
- "scopes": null,
- "note": null,
- "created_at": "2026-01-29T15:37:00.082Z",
- "updated_at": "2026-01-29T15:37:00.082Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null
}, - {
- "id": 1581,
- "scopes": null,
- "note": null,
- "created_at": "2026-01-29T15:37:00.081Z",
- "updated_at": "2026-01-29T15:37:00.081Z",
- "last_used_at": "2026-01-29T15:37:00.088Z",
- "source": null,
- "organization": null,
- "asset_group_id": null
}
]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": 1587,
- "scopes": null,
- "note": null,
- "created_at": "2026-01-29T15:37:05.211Z",
- "updated_at": "2026-01-29T15:37:05.211Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "token": "9e616637ab41fc226076f53d3e45a394"
}Get details of a specific personal access token.
| id required | integer |
{- "id": 1584,
- "scopes": null,
- "note": null,
- "created_at": "2026-01-29T15:37:02.629Z",
- "updated_at": "2026-01-29T15:37:02.629Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null
}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": 13925,
- "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-01-29T15:37:10.546Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13924,
- "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-01-29T15:37:08.331Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13923,
- "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-01-29T15:37:08.330Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13922,
- "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-01-29T15:37:08.328Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13921,
- "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-01-29T15:37:08.327Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13920,
- "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-01-29T15:37:08.325Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13919,
- "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-01-29T15:37:08.324Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13918,
- "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-01-29T15:37:08.320Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}, - {
- "id": 13917,
- "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-01-29T15:37:08.319Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "assets_count": 0,
- "editable": true
}
]Create a new rights package for the organization.
object |
{- "rights_package": {
- "name": "string",
- "rights_class": "owned",
- "enabled": true
}
}{- "id": 13944,
- "organization_id": 1739,
- "user_id": 21860,
- "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-01-29T15:37:15.724Z",
- "updated_at": "2026-01-29T15:37:15.724Z",
- "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": 13934,
- "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-01-29T15:37:13.121Z",
- "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": 1740,
- "enabled": false,
- "id": 13953,
- "user_id": 21869,
- "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-01-29T15:37:18.426Z",
- "updated_at": "2026-01-29T15:37:18.448Z",
- "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": 13962,
- "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-01-29T15:37:21.024Z",
- "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
}
]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": 18,
- "user_id": 21896,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-01-29T15:37:26.737Z",
- "updated_at": "2026-01-29T15:37:26.737Z"
}
]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": 21,
- "user_id": 21914,
- "json_logic": null,
- "name": "New Saved Search",
- "description": "Find pending assets",
- "sql": "aasm_state = 'pending'",
- "created_at": "2026-01-29T15:37:31.900Z",
- "updated_at": "2026-01-29T15:37:31.900Z"
}Get details of a specific saved search query.
| id required | integer |
{- "id": 19,
- "user_id": 21905,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-01-29T15:37:29.330Z",
- "updated_at": "2026-01-29T15:37:29.330Z"
}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": 22,
- "user_id": 21923,
- "json_logic": null,
- "name": "Updated Search Name",
- "description": "Updated description",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-01-29T15:37:34.430Z",
- "updated_at": "2026-01-29T15:37:34.446Z"
}| publish_user_id | integer Filter by Publish User ID; for Lightroom Publish Connections |
| publish_type | string Value: "lightroom" Filter by Publish Type |
[- {
- "id": 69267,
- "created_at": "2026-01-29T15:38:09.382Z",
- "description": null,
- "slug": "joannie-toy-heathcote-com",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "joannie-toy-heathcote-com"
], - "asset_group_id": 69267,
- "has_workflow_steps": false,
- "contribution_id": 40948,
- "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": 22043,
- "first_name": "Deane",
- "last_name": "Emmerich",
- "created_at": "2026-01-29T15:38:09.097Z",
- "default_username": "sheldon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deane Emmerich",
- "initials": "D E",
- "username": null,
- "title": null,
- "user_id": 22043,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69268,
- "created_at": "2026-01-29T15:38:09.397Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69267,
- "ancestor_ids": [
- 69264,
- 69267
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "joannie-toy-heathcote-com",
- "my-first-lightbox"
], - "asset_group_id": 69268,
- "has_workflow_steps": false,
- "contribution_id": 40949,
- "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": 22043,
- "first_name": "Deane",
- "last_name": "Emmerich",
- "created_at": "2026-01-29T15:38:09.097Z",
- "default_username": "sheldon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deane Emmerich",
- "initials": "D E",
- "username": null,
- "title": null,
- "user_id": 22043,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69262,
- "created_at": "2026-01-29T15:38:09.271Z",
- "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": 69262,
- "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": 22043,
- "first_name": "Deane",
- "last_name": "Emmerich",
- "created_at": "2026-01-29T15:38:09.097Z",
- "default_username": "sheldon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deane Emmerich",
- "initials": "D E",
- "username": null,
- "title": null,
- "user_id": 22043,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69263,
- "created_at": "2026-01-29T15:38:09.279Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 69262,
- "ancestor_ids": [
- 69262
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 69263,
- "has_workflow_steps": false,
- "contribution_id": 40946,
- "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": 22043,
- "first_name": "Deane",
- "last_name": "Emmerich",
- "created_at": "2026-01-29T15:38:09.097Z",
- "default_username": "sheldon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deane Emmerich",
- "initials": "D E",
- "username": null,
- "title": null,
- "user_id": 22043,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69264,
- "created_at": "2026-01-29T15:38:09.294Z",
- "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": 69264,
- "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": 22043,
- "first_name": "Deane",
- "last_name": "Emmerich",
- "created_at": "2026-01-29T15:38:09.097Z",
- "default_username": "sheldon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Deane Emmerich",
- "initials": "D E",
- "username": null,
- "title": null,
- "user_id": 22043,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69272,
- "created_at": "2026-01-29T15:38:09.778Z",
- "description": null,
- "slug": "tester-38888c66-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-38888c66-mediagraph-io"
], - "asset_group_id": 69272,
- "has_workflow_steps": false,
- "contribution_id": 40951,
- "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": 22044,
- "first_name": "Predovic-Lind Test",
- "last_name": "General Member",
- "created_at": "2026-01-29T15:38:09.683Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test General Member",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22044,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69273,
- "created_at": "2026-01-29T15:38:09.793Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-3",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69272,
- "ancestor_ids": [
- 69264,
- 69272
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-38888c66-mediagraph-io",
- "my-first-lightbox-3"
], - "asset_group_id": 69273,
- "has_workflow_steps": false,
- "contribution_id": 40952,
- "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": 22044,
- "first_name": "Predovic-Lind Test",
- "last_name": "General Member",
- "created_at": "2026-01-29T15:38:09.683Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test General Member",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22044,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69277,
- "created_at": "2026-01-29T15:38:10.237Z",
- "description": null,
- "slug": "tester-5cdd33e5-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-5cdd33e5-mediagraph-io"
], - "asset_group_id": 69277,
- "has_workflow_steps": false,
- "contribution_id": 40954,
- "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": 22045,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-01-29T15:38:10.136Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Content Manager",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22045,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69278,
- "created_at": "2026-01-29T15:38:10.252Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-4",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69277,
- "ancestor_ids": [
- 69264,
- 69277
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-5cdd33e5-mediagraph-io",
- "my-first-lightbox-4"
], - "asset_group_id": 69278,
- "has_workflow_steps": false,
- "contribution_id": 40955,
- "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": 22045,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-01-29T15:38:10.136Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Content Manager",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22045,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69282,
- "created_at": "2026-01-29T15:38:10.647Z",
- "description": null,
- "slug": "tester-da625899-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-da625899-mediagraph-io"
], - "asset_group_id": 69282,
- "has_workflow_steps": false,
- "contribution_id": 40957,
- "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": 22046,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-01-29T15:38:10.544Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Library Manager",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22046,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69283,
- "created_at": "2026-01-29T15:38:10.663Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-5",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69282,
- "ancestor_ids": [
- 69264,
- 69282
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-da625899-mediagraph-io",
- "my-first-lightbox-5"
], - "asset_group_id": 69283,
- "has_workflow_steps": false,
- "contribution_id": 40958,
- "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": 22046,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-01-29T15:38:10.544Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Library Manager",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22046,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69287,
- "created_at": "2026-01-29T15:38:11.064Z",
- "description": null,
- "slug": "tester-ae924703-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-ae924703-mediagraph-io"
], - "asset_group_id": 69287,
- "has_workflow_steps": false,
- "contribution_id": 40960,
- "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": 22047,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Tagger",
- "created_at": "2026-01-29T15:38:10.960Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Tagger",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22047,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69288,
- "created_at": "2026-01-29T15:38:11.082Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-6",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69287,
- "ancestor_ids": [
- 69264,
- 69287
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-ae924703-mediagraph-io",
- "my-first-lightbox-6"
], - "asset_group_id": 69288,
- "has_workflow_steps": false,
- "contribution_id": 40961,
- "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": 22047,
- "first_name": "Predovic-Lind Test",
- "last_name": "Global Tagger",
- "created_at": "2026-01-29T15:38:10.960Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Predovic-Lind Test Global Tagger",
- "initials": "P G",
- "username": null,
- "title": null,
- "user_id": 22047,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69292,
- "created_at": "2026-01-29T15:38:11.898Z",
- "description": null,
- "slug": "ranae-carter-trantow-org",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 69264,
- "ancestor_ids": [
- 69264
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "ranae-carter-trantow-org"
], - "asset_group_id": 69292,
- "has_workflow_steps": false,
- "contribution_id": 40963,
- "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": 22052,
- "first_name": "Bradford",
- "last_name": "McClure",
- "created_at": "2026-01-29T15:38:11.807Z",
- "default_username": "tiffanie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bradford McClure",
- "initials": "B M",
- "username": null,
- "title": null,
- "user_id": 22052,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69293,
- "created_at": "2026-01-29T15:38:11.913Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-7",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 69292,
- "ancestor_ids": [
- 69264,
- 69292
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "ranae-carter-trantow-org",
- "my-first-lightbox-7"
], - "asset_group_id": 69293,
- "has_workflow_steps": false,
- "contribution_id": 40964,
- "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": 22052,
- "first_name": "Bradford",
- "last_name": "McClure",
- "created_at": "2026-01-29T15:38:11.807Z",
- "default_username": "tiffanie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bradford McClure",
- "initials": "B M",
- "username": null,
- "title": null,
- "user_id": 22052,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69296,
- "created_at": "2026-01-29T15:38:12.181Z",
- "name": "Bernini201",
- "description": "Et et nam. Quo et ab. Hic iste doloribus.",
- "slug": "consequuntur-maxime201",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Bernini201"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "consequuntur-maxime201"
], - "asset_group_id": 69296,
- "has_workflow_steps": false,
- "contribution_id": 40965,
- "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": 22052,
- "first_name": "Bradford",
- "last_name": "McClure",
- "created_at": "2026-01-29T15:38:11.807Z",
- "default_username": "tiffanie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bradford McClure",
- "initials": "B M",
- "username": null,
- "title": null,
- "user_id": 22052,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}
]object |
{- "storage_folder": {
- "name": "Test Folder",
- "description": "string",
- "parent_id": 69464,
- "organizer": true,
- "publish_type": "l",
- "publish_user_name": "string"
}
}{- "id": 69465,
- "created_at": "2026-01-29T15:38:27.108Z",
- "name": "Test Folder",
- "description": null,
- "slug": "test-folder",
- "organizer": null,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Edward Hopper208",
- "Test Folder"
], - "parent_id": 69464,
- "ancestor_ids": [
- 69464
], - "visible_assets_count": null,
- "path_slugs": [
- "hic_qui208",
- "test-folder"
], - "asset_group_id": 69465,
- "has_workflow_steps": false,
- "contribution_id": 41066,
- "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": 22092,
- "first_name": "Boyd",
- "last_name": "Barton",
- "created_at": "2026-01-29T15:38:24.029Z",
- "default_username": "gaildare",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Boyd Barton",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 22092,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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 |
| Total-Entries | integer |
[- {
- "id": 69337,
- "created_at": "2026-01-29T15:38:15.602Z",
- "name": "Ansel Adams203",
- "description": "Quaerat qui excepturi. Minima neque et. Earum et quia.",
- "slug": "error-fuga203",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Ansel Adams203"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "error-fuga203"
], - "asset_group_id": 69337,
- "has_workflow_steps": false,
- "contribution_id": 40989,
- "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": 22063,
- "first_name": "Raymundo",
- "last_name": "Aufderhar",
- "created_at": "2026-01-29T15:38:15.201Z",
- "default_username": "rolf_conn",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Raymundo Aufderhar",
- "initials": "R A",
- "username": null,
- "title": null,
- "user_id": 22063,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69299,
- "created_at": "2026-01-29T15:38:12.488Z",
- "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": 69299,
- "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": 22053,
- "first_name": "Allene",
- "last_name": "Mueller",
- "created_at": "2026-01-29T15:38:12.263Z",
- "default_username": "randall",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Allene Mueller",
- "initials": "A M",
- "username": null,
- "title": null,
- "user_id": 22053,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69331,
- "created_at": "2026-01-29T15:38:15.191Z",
- "name": "Pollock202",
- "description": "Non est ex. Labore ut voluptatem. Amet dolor earum.",
- "slug": "tempora-aut202",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock202"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "tempora-aut202"
], - "asset_group_id": 69331,
- "has_workflow_steps": false,
- "contribution_id": 40985,
- "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": 22062,
- "first_name": "Sung",
- "last_name": "Jaskolski",
- "created_at": "2026-01-29T15:38:14.803Z",
- "default_username": "nealhartmann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sung Jaskolski",
- "initials": "S J",
- "username": null,
- "title": null,
- "user_id": 22062,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 69297,
- "created_at": "2026-01-29T15:38:12.467Z",
- "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": 69297,
- "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": 22053,
- "first_name": "Allene",
- "last_name": "Mueller",
- "created_at": "2026-01-29T15:38:12.263Z",
- "default_username": "randall",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Allene Mueller",
- "initials": "A M",
- "username": null,
- "title": null,
- "user_id": 22053,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}
]| id required | integer |
{- "id": 69429,
- "created_at": "2026-01-29T15:38:23.966Z",
- "name": "Titian207",
- "description": "Libero voluptates sit. Veritatis ratione perferendis. Et ut velit.",
- "slug": "dolorem_error207",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Titian207"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "dolorem_error207"
], - "asset_group_id": 69429,
- "has_workflow_steps": false,
- "contribution_id": 41045,
- "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": 22091,
- "first_name": "Johnson",
- "last_name": "Johnston",
- "created_at": "2026-01-29T15:38:23.547Z",
- "default_username": "jan",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Johnson Johnston",
- "initials": "J J",
- "username": null,
- "title": null,
- "user_id": 22091,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 69500,
- "created_at": "2026-01-29T15:38:30.762Z",
- "name": "Test Folder Edit",
- "description": "Veritatis nobis consequatur. Molestiae sint recusandae. Non non dolorem.",
- "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": 69500,
- "has_workflow_steps": false,
- "contribution_id": 41086,
- "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": 22111,
- "first_name": "Britteny",
- "last_name": "Wisozk",
- "created_at": "2026-01-29T15:38:30.251Z",
- "default_username": "will",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Britteny Wisozk",
- "initials": "B W",
- "username": null,
- "title": null,
- "user_id": 22111,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 22122,
- "first_name": "Ward",
- "last_name": "Anderson",
- "default_username": "benitahickle",
- "confirmed_at": "2026-01-29T15:38:36.834Z",
- "created_at": "2026-01-29T15:38:36.836Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Ward Anderson",
- "initials": "W A",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22122
}, - "taxonomy_path_names": [ ]
}[- {
- "id": 1828,
- "organization_id": 1776,
- "name": "magnam",
- "description": null,
- "user_id": 22256,
- "created_at": "2026-01-29T15:39:16.517Z",
- "updated_at": "2026-01-29T15:39:16.517Z",
- "user": {
- "id": 22256,
- "first_name": "Otto",
- "last_name": "Cronin",
- "default_username": "justin_stoltenberg",
- "confirmed_at": "2026-01-29T15:39:16.439Z",
- "created_at": "2026-01-29T15:39:16.441Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Otto Cronin",
- "initials": "O C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22256
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 1827,
- "organization_id": 1776,
- "name": "porro",
- "description": null,
- "user_id": 22255,
- "created_at": "2026-01-29T15:39:16.434Z",
- "updated_at": "2026-01-29T15:39:16.434Z",
- "user": {
- "id": 22255,
- "first_name": "Antwan",
- "last_name": "Pfannerstill",
- "default_username": "carlo_hermann",
- "confirmed_at": "2026-01-29T15:39:16.358Z",
- "created_at": "2026-01-29T15:39:16.359Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Antwan Pfannerstill",
- "initials": "A P",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22255
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 1826,
- "organization_id": 1776,
- "name": "mollitia",
- "description": null,
- "user_id": 22254,
- "created_at": "2026-01-29T15:39:16.354Z",
- "updated_at": "2026-01-29T15:39:16.354Z",
- "user": {
- "id": 22254,
- "first_name": "Loyd",
- "last_name": "Mayer",
- "default_username": "tianna_brekke",
- "confirmed_at": "2026-01-29T15:39:16.275Z",
- "created_at": "2026-01-29T15:39:16.276Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Loyd Mayer",
- "initials": "L M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22254
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 1825,
- "organization_id": 1776,
- "name": "Global Tag Tree",
- "description": null,
- "user_id": 22245,
- "created_at": "2026-01-29T15:39:13.819Z",
- "updated_at": "2026-01-29T15:39:13.819Z",
- "user": {
- "id": 22245,
- "first_name": "Latrice",
- "last_name": "Lakin",
- "default_username": "sharleen",
- "confirmed_at": "2026-01-29T15:39:13.583Z",
- "created_at": "2026-01-29T15:39:13.584Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Latrice Lakin",
- "initials": "L L",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22245
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}
]object |
{- "taxonomy": {
- "name": "Main Taxonomy",
- "description": "string"
}
}{- "id": 1833,
- "organization_id": 1778,
- "name": "Main Taxonomy",
- "description": null,
- "user_id": 22267,
- "created_at": "2026-01-29T15:39:21.809Z",
- "updated_at": "2026-01-29T15:39:21.809Z",
- "user": {
- "id": 22267,
- "first_name": "Adaline",
- "last_name": "Gibson",
- "default_username": "gordon_friesen",
- "confirmed_at": "2026-01-29T15:39:19.093Z",
- "created_at": "2026-01-29T15:39:19.094Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Adaline Gibson",
- "initials": "A G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22267
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
{- "id": 1830,
- "organization_id": 1777,
- "name": "quisquam",
- "description": null,
- "user_id": 22266,
- "created_at": "2026-01-29T15:39:19.074Z",
- "updated_at": "2026-01-29T15:39:19.074Z",
- "user": {
- "id": 22266,
- "first_name": "Werner",
- "last_name": "Botsford",
- "default_username": "cordiehomenick",
- "confirmed_at": "2026-01-29T15:39:19.001Z",
- "created_at": "2026-01-29T15:39:19.002Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Werner Botsford",
- "initials": "W B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22266
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
object |
{- "taxonomy": {
- "name": "Main Taxonomy Edit",
- "description": "string"
}
}{- "id": 1835,
- "organization_id": 1779,
- "name": "Main Taxonomy Edit",
- "description": null,
- "user_id": 22286,
- "created_at": "2026-01-29T15:39:24.495Z",
- "updated_at": "2026-01-29T15:39:24.505Z",
- "user": {
- "id": 22286,
- "first_name": "Marian",
- "last_name": "McDermott",
- "default_username": "ashlea",
- "confirmed_at": "2026-01-29T15:39:24.416Z",
- "created_at": "2026-01-29T15:39:24.417Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Marian McDermott",
- "initials": "M M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22286
}, - "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": 1547,
- "user_id": 22373,
- "guid": "ca39f11b",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-01-29T15:39:51.514Z",
- "updated_at": "2026-01-29T15:39:51.514Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 41495,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": false,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 41495,
- "name": "culpa",
- "text": "Eum pariatur sed. Et similique odit. Qui rerum et.",
- "featured": true,
- "slug": "fugit-voluptatem",
- "storage_folder_id": 70230,
- "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-01-29T15:39:51.501Z",
- "updated_at": "2026-01-29T15:39:51.501Z",
- "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": "41495-culpa",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 70230,
- "created_at": "2026-01-29T15:39:51.493Z",
- "name": "Durer213",
- "description": "Aperiam iure placeat. Esse praesentium quidem. Voluptatem fuga voluptate.",
- "slug": "excepturi_qui213",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Durer213"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "excepturi_qui213"
], - "asset_group_id": 70230,
- "has_workflow_steps": false,
- "contribution_id": 41494,
- "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": 22382,
- "first_name": "Mary",
- "last_name": "Huels",
- "created_at": "2026-01-29T15:39:51.078Z",
- "default_username": "joseph",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Mary Huels",
- "initials": "M H",
- "username": null,
- "title": null,
- "user_id": 22382,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 22373,
- "first_name": "Jude",
- "last_name": "Walsh",
- "created_at": "2026-01-29T15:39:47.734Z",
- "default_username": "dennis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jude Walsh",
- "initials": "J W",
- "username": null,
- "title": null,
- "user_id": 22373,
- "lang": null,
- "notify_new_membership_requests": null
}, - "aws_key": "AKIATBO5XF4E4UM4N247",
- "bucket": "tandemvault-asset-uploads-development",
- "ftp_password": "1d6eb1e1",
- "ftp_url": "sftp://fran%40stroman.info:[email protected]/mediagraph-ftp-dev-2/1787/39e9f2d5"
}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": 1538,
- "filename": "test.jpg",
- "file_size": 10000,
- "guid": "826b12f7-ca17-40be-909e-6514f03f3a5e",
- "short_guid": "826b12f7",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "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": 1788,
- "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": 1548,
- "user_id": 22383,
- "aasm_state": "pending",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-01-29T15:39:54.860Z",
- "updated_at": "2026-01-29T15:39:55.008Z",
- "s3_upload_id": null,
- "s3_upload_key": "1788/3e8f7f53/826b12f7-ca17-40be-909e-6514f03f3a5e-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": 22383,
- "first_name": "Lorenza",
- "last_name": "Hoppe",
- "created_at": "2026-01-29T15:39:51.548Z",
- "default_username": "margret",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lorenza Hoppe",
- "initials": "L H",
- "username": null,
- "title": null,
- "user_id": 22383,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "qui-modi214",
- "tags": [ ],
- "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": 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,
- "product_in_image": null,
- "artwork_or_object": 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": 70265,
- "created_at": "2026-01-29T15:39:54.813Z",
- "name": "Munch214",
- "description": "In fugit hic. Ullam reprehenderit sed. Illum voluptates eum.",
- "slug": "qui-modi214",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Munch214"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui-modi214"
], - "asset_group_id": 70265,
- "has_workflow_steps": false,
- "contribution_id": 41515,
- "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": 22393,
- "first_name": "Karren",
- "last_name": "Rau",
- "created_at": "2026-01-29T15:39:54.372Z",
- "default_username": "gail",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Karren Rau",
- "initials": "K R",
- "username": null,
- "title": null,
- "user_id": 22393,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 14332,
- "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-01-29T15:39:51.747Z",
- "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": 14333,
- "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-01-29T15:39:51.749Z",
- "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": 14334,
- "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-01-29T15:39:51.750Z",
- "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": 14335,
- "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-01-29T15:39:51.752Z",
- "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": 14336,
- "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-01-29T15:39:51.754Z",
- "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": 14337,
- "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-01-29T15:39:51.756Z",
- "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": 14338,
- "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-01-29T15:39:51.758Z",
- "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": 14339,
- "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-01-29T15:39:51.759Z",
- "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": 1548,
- "user_id": 22383,
- "guid": "3e8f7f53",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:39:54.831Z",
- "updated_at": "2026-01-29T15:39:54.831Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 41516,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 41516,
- "name": "et",
- "text": "Saepe alias ut. Ipsa sequi ducimus. Facilis occaecati ut.",
- "featured": true,
- "slug": "dolorem_dolor",
- "storage_folder_id": 70265,
- "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-01-29T15:39:54.828Z",
- "updated_at": "2026-01-29T15:39:54.828Z",
- "rights_package_ids": [ ],
- "require_rights_package": false,
- "require_creator_tag": false,
- "uploads_count": 1,
- "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": "41516-et",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 70265,
- "created_at": "2026-01-29T15:39:54.813Z",
- "name": "Munch214",
- "description": "In fugit hic. Ullam reprehenderit sed. Illum voluptates eum.",
- "slug": "qui-modi214",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Munch214"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui-modi214"
], - "asset_group_id": 70265,
- "has_workflow_steps": false,
- "contribution_id": 41515,
- "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": 22393,
- "first_name": "Karren",
- "last_name": "Rau",
- "created_at": "2026-01-29T15:39:54.372Z",
- "default_username": "gail",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Karren Rau",
- "initials": "K R",
- "username": null,
- "title": null,
- "user_id": 22393,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 22383,
- "first_name": "Lorenza",
- "last_name": "Hoppe",
- "created_at": "2026-01-29T15:39:51.548Z",
- "default_username": "margret",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lorenza Hoppe",
- "initials": "L H",
- "username": null,
- "title": null,
- "user_id": 22383,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_package_met": true,
- "creator_tag_met": true,
- "unmet_tag_suggester_ids": [ ],
- "collective_work_ids": [ ]
}(Optional) Call once all Assets have been uploaded. Will submit each Asset in background.
| id required | integer The Upload ID |
{- "id": 1549,
- "assets_count": 1,
- "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": 1550,
- "user_id": 22406,
- "guid": "1538df52",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-01-29T15:40:01.040Z",
- "updated_at": "2026-01-29T15:40:01.040Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": false,
- "contribution_id": 41538,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "all_requirements_met": false,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 41538,
- "name": "Default",
- "text": null,
- "featured": true,
- "slug": null,
- "storage_folder_id": 70302,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": 70302,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-01-29T15:39:58.781Z",
- "updated_at": "2026-01-29T15:39:58.781Z",
- "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": "41538-default",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "asset_group": {
- "id": 70302,
- "name": "Default",
- "description": null,
- "type": "StorageFolder",
- "slug": "70302"
}, - "rights_packages": [ ],
- "storage_folder": {
- "id": 70302,
- "created_at": "2026-01-29T15:39:58.779Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 70301,
- "ancestor_ids": [
- 70301
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 70302,
- "has_workflow_steps": false,
- "contribution_id": 41538,
- "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": 22406,
- "first_name": "Jesus",
- "last_name": "Shanahan",
- "created_at": "2026-01-29T15:39:58.602Z",
- "default_username": "garry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jesus Shanahan",
- "initials": "J S",
- "username": null,
- "title": null,
- "user_id": 22406,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 22406,
- "first_name": "Jesus",
- "last_name": "Shanahan",
- "created_at": "2026-01-29T15:39:58.602Z",
- "default_username": "garry",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jesus Shanahan",
- "initials": "J S",
- "username": null,
- "title": null,
- "user_id": 22406,
- "lang": null,
- "notify_new_membership_requests": null
}, - "aws_key": "AKIATBO5XF4E4UM4N247",
- "bucket": "tandemvault-asset-uploads-development",
- "ftp_password": "ce87757c",
- "ftp_url": "sftp://waylon.denesik%40kessler.co:[email protected]/mediagraph-ftp-dev-2/1790/3806092a"
}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 |
| current | integer Default: 1 Current page number |
| pageSize | integer Default: 25 Number of items per page |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 3642,
- "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-01-29T15:40:01.433Z",
- "updated_at": "2026-01-29T15:40:01.433Z",
- "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": 22039,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.436Z",
- "updated_at": "2026-01-29T15:40:01.436Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22040,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.440Z",
- "updated_at": "2026-01-29T15:40:01.440Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22041,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.441Z",
- "updated_at": "2026-01-29T15:40:01.441Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22042,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.459Z",
- "updated_at": "2026-01-29T15:40:01.459Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22043,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.463Z",
- "updated_at": "2026-01-29T15:40:01.463Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22044,
- "organization_id": 1791,
- "user_group_id": 3642,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.466Z",
- "updated_at": "2026-01-29T15:40:01.466Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 22415,
- "first_name": "Marcelo",
- "last_name": "Kreiger",
- "created_at": "2026-01-29T15:40:01.150Z",
- "default_username": "joangerhold",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcelo Kreiger",
- "initials": "M K",
- "username": null,
- "title": null,
- "user_id": 22415,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 3643,
- "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-01-29T15:40:01.471Z",
- "updated_at": "2026-01-29T15:40:01.471Z",
- "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": 22045,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.473Z",
- "updated_at": "2026-01-29T15:40:01.473Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22046,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.475Z",
- "updated_at": "2026-01-29T15:40:01.475Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22047,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.477Z",
- "updated_at": "2026-01-29T15:40:01.477Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22048,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.479Z",
- "updated_at": "2026-01-29T15:40:01.479Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22049,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.481Z",
- "updated_at": "2026-01-29T15:40:01.481Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 22050,
- "organization_id": 1791,
- "user_group_id": 3643,
- "asset_group_id": null,
- "user_id": 22415,
- "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-01-29T15:40:01.483Z",
- "updated_at": "2026-01-29T15:40:01.483Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 22415,
- "first_name": "Marcelo",
- "last_name": "Kreiger",
- "created_at": "2026-01-29T15:40:01.150Z",
- "default_username": "joangerhold",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcelo Kreiger",
- "initials": "M K",
- "username": null,
- "title": null,
- "user_id": 22415,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 3644,
- "name": "Wholesale",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 70360,
- "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-01-29T15:40:04.223Z",
- "updated_at": "2026-01-29T15:40:04.223Z",
- "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": 22415,
- "first_name": "Marcelo",
- "last_name": "Kreiger",
- "created_at": "2026-01-29T15:40:01.150Z",
- "default_username": "joangerhold",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcelo Kreiger",
- "initials": "M K",
- "username": null,
- "title": null,
- "user_id": 22415,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 70360,
- "created_at": "2026-01-29T15:40:04.233Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Wholesale Storage",
- "Group Uploads"
], - "parent_id": 70359,
- "ancestor_ids": [
- 70359
], - "visible_assets_count": null,
- "path_slugs": [
- "wholesale-storage",
- "group-uploads"
], - "asset_group_id": 70360,
- "has_workflow_steps": false,
- "contribution_id": 41570,
- "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": 22415,
- "first_name": "Marcelo",
- "last_name": "Kreiger",
- "created_at": "2026-01-29T15:40:01.150Z",
- "default_username": "joangerhold",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcelo Kreiger",
- "initials": "M K",
- "username": null,
- "title": null,
- "user_id": 22415,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3644,
- "name": "Wholesale",
- "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": 3651,
- "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-01-29T15:40:10.339Z",
- "updated_at": "2026-01-29T15:40:10.339Z",
- "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": 22433,
- "first_name": "Alphonso",
- "last_name": "McDermott",
- "created_at": "2026-01-29T15:40:07.272Z",
- "default_username": "kaitlyn",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Alphonso McDermott",
- "initials": "A M",
- "username": null,
- "title": null,
- "user_id": 22433,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 3647,
- "name": "Import and Export",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 70391,
- "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-01-29T15:40:07.226Z",
- "updated_at": "2026-01-29T15:40:07.226Z",
- "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": 22424,
- "first_name": "Kristyn",
- "last_name": "Ortiz",
- "created_at": "2026-01-29T15:40:04.403Z",
- "default_username": "darwinprice",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kristyn Ortiz",
- "initials": "K O",
- "username": null,
- "title": null,
- "user_id": 22424,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 70391,
- "created_at": "2026-01-29T15:40:07.236Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Import and Export Storage",
- "Group Uploads"
], - "parent_id": 70390,
- "ancestor_ids": [
- 70390
], - "visible_assets_count": null,
- "path_slugs": [
- "import-and-export-storage",
- "group-uploads"
], - "asset_group_id": 70391,
- "has_workflow_steps": false,
- "contribution_id": 41587,
- "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": 22424,
- "first_name": "Kristyn",
- "last_name": "Ortiz",
- "created_at": "2026-01-29T15:40:04.403Z",
- "default_username": "darwinprice",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kristyn Ortiz",
- "initials": "K O",
- "username": null,
- "title": null,
- "user_id": 22424,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3647,
- "name": "Import and Export",
- "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": 3654,
- "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": 70453,
- "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-01-29T15:40:13.705Z",
- "updated_at": "2026-01-29T15:40:13.737Z",
- "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": 22442,
- "first_name": "Brant",
- "last_name": "Buckridge",
- "created_at": "2026-01-29T15:40:10.358Z",
- "default_username": "gabrielyundt",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Brant Buckridge",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 22442,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 70453,
- "created_at": "2026-01-29T15:40:13.718Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Glass, Ceramics & Concrete Storage",
- "Group Uploads"
], - "parent_id": 70452,
- "ancestor_ids": [
- 70452
], - "visible_assets_count": null,
- "path_slugs": [
- "glass-ceramics-concrete-storage",
- "group-uploads"
], - "asset_group_id": 70453,
- "has_workflow_steps": false,
- "contribution_id": 41621,
- "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": 22442,
- "first_name": "Brant",
- "last_name": "Buckridge",
- "created_at": "2026-01-29T15:40:10.358Z",
- "default_username": "gabrielyundt",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Brant Buckridge",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 22442,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 3654,
- "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": 22460,
- "first_name": "Bob",
- "last_name": "Balistreri",
- "default_username": "sanfordgibson",
- "confirmed_at": "2026-01-29T15:40:17.028Z",
- "created_at": "2026-01-29T15:40:17.029Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Bob Balistreri",
- "initials": "B B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22460,
- "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 |
| current | integer Default: 1 Current page number |
| pageSize | integer Default: 25 Number of items per page |
| sortField | string Enum: "created_at" "name" "url" Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 83,
- "user": {
- "id": 22478,
- "first_name": "Joanna",
- "last_name": "Casper",
- "default_username": "desirae",
- "confirmed_at": "2026-01-29T15:40:22.298Z",
- "created_at": "2026-01-29T15:40:22.299Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Joanna Casper",
- "initials": "J C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22478
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 70577,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-01-29T15:40:25.765Z",
- "updated_at": "2026-01-29T15:40:25.765Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "70577",
- "asset_group_path_names": [
- "Winslow Homer216"
], - "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": 70647,
- "include_download_url": true,
- "group_assets": true,
- "trash": true,
- "note": "string"
}
}{- "id": 86,
- "organization_id": 1800,
- "user_id": 22498,
- "name": "My Integration Webhook",
- "note": null,
- "asset_group_id": 70647,
- "events": "asset.created,asset.updated",
- "include_download_url": false,
- "created_at": "2026-01-29T15:40:31.733Z",
- "updated_at": "2026-01-29T15:40:31.733Z",
- "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": 84,
- "user": {
- "id": 22488,
- "first_name": "Valentin",
- "last_name": "Towne",
- "default_username": "val_beahan",
- "confirmed_at": "2026-01-29T15:40:25.804Z",
- "created_at": "2026-01-29T15:40:25.806Z",
- "otp_required_for_login": null,
- "can_create_orgs": false,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "lang": null,
- "enable_lightroom": true,
- "avatar_url": null,
- "name": "Valentin Towne",
- "initials": "V T",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 22488
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 70612,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-01-29T15:40:28.812Z",
- "updated_at": "2026-01-29T15:40:28.812Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "70612",
- "asset_group_path_names": [
- "Chagall217"
], - "requests_count": 0,
- "group_assets": true,
- "trash": false,
- "asset_group": {
- "id": 70612,
- "created_at": "2026-01-29T15:40:28.803Z",
- "name": "Chagall217",
- "description": "Rerum aut beatae. Cumque dolorem qui. Nostrum illum earum.",
- "slug": "molestiae_quisquam217",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Chagall217"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "molestiae_quisquam217"
], - "asset_group_id": 70612,
- "has_workflow_steps": false,
- "contribution_id": 41710,
- "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": 22497,
- "first_name": "Devin",
- "last_name": "Hessel",
- "created_at": "2026-01-29T15:40:28.375Z",
- "default_username": "charlie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Devin Hessel",
- "initials": "D H",
- "username": null,
- "title": null,
- "user_id": 22497,
- "lang": null,
- "notify_new_membership_requests": null
}, - "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": 1802,
- "enabled": false,
- "name": "Updated Webhook Name",
- "id": 89,
- "user_id": 22518,
- "note": null,
- "asset_group_id": 70717,
- "events": null,
- "include_download_url": false,
- "created_at": "2026-01-29T15:40:37.737Z",
- "updated_at": "2026-01-29T15:40:37.746Z",
- "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 |
| current | integer Default: 1 Current page number |
| pageSize | integer Default: 25 Number of items per page |
| sortField | string Field to sort by |
| sortOrder | string Enum: "ascend" "descend" Sort direction |
| 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": 44,
- "name": "vitae",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 70922,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-01-29T15:40:55.886Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 80,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 70922,
- "name": "Escher226",
- "sub_type": null,
- "path_names": [
- "Escher226"
], - "path_slugs": [
- "voluptatem_et226"
], - "description": "Quasi ullam maxime. Cupiditate ut et. Voluptas facere aut.",
- "created_at": "2026-01-29T15:40:55.875Z",
- "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": 70922,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 70922,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 70922,
- "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": 22578,
- "first_name": "Anglea",
- "last_name": "Gottlieb",
- "created_at": "2026-01-29T15:40:53.069Z",
- "default_username": "lionel_okuneva",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Anglea Gottlieb",
- "initials": "A G",
- "username": null,
- "title": null,
- "user_id": 22578,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "70922-voluptatem_et226",
- "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": 45,
- "name": "voluptatum",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 70952,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-01-29T15:40:58.923Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 81,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 70952,
- "name": "Titian227",
- "sub_type": null,
- "path_names": [
- "Titian227"
], - "path_slugs": [
- "sint-asperiores227"
], - "description": "Aliquid tempore officia. Aut quasi quisquam. Eos corrupti labore.",
- "created_at": "2026-01-29T15:40:58.917Z",
- "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": 70952,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 70952,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 70952,
- "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": 22587,
- "first_name": "Lane",
- "last_name": "McDermott",
- "created_at": "2026-01-29T15:40:55.957Z",
- "default_username": "mammie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lane McDermott",
- "initials": "L M",
- "username": null,
- "title": null,
- "user_id": 22587,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "70952-sint-asperiores227",
- "can_manage": null,
- "can_edit": null,
- "editable": null,
- "role": null,
- "owner": null,
- "can_update_assets": true
}, - "workflow": {
- "name": "facilis",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:40:58.912Z",
- "auto": false,
- "user": {
- "id": 22587,
- "first_name": "Lane",
- "last_name": "McDermott",
- "created_at": "2026-01-29T15:40:55.957Z",
- "default_username": "mammie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lane McDermott",
- "initials": "L M",
- "username": null,
- "title": null,
- "user_id": 22587,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - "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": 46,
- "name": "Updated Step",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 70982,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-01-29T15:41:01.624Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 82,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 70982,
- "name": "Pissarro228",
- "sub_type": null,
- "path_names": [
- "Pissarro228"
], - "path_slugs": [
- "in_magni228"
], - "description": "Minus aliquid debitis. Ut ducimus ea. Voluptatem omnis est.",
- "created_at": "2026-01-29T15:41:01.619Z",
- "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": 70982,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 70982,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 70982,
- "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": 22596,
- "first_name": "Quincy",
- "last_name": "Nitzsche",
- "created_at": "2026-01-29T15:40:58.956Z",
- "default_username": "cicely",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Quincy Nitzsche",
- "initials": "Q N",
- "username": null,
- "title": null,
- "user_id": 22596,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "70982-in_magni228",
- "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": 22605,
- "asset_group_asset_id": 348,
- "workflow_step_id": 47,
- "created_at": null,
- "updated_at": null,
- "asset_group_id": null,
- "asset_id": 1540
}
]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": 85,
- "name": "quod",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:41:13.846Z",
- "updated_at": "2026-01-29T15:41:13.846Z",
- "user": {
- "id": 22627,
- "first_name": "Tamiko",
- "last_name": "Rodriguez",
- "created_at": "2026-01-29T15:41:10.496Z",
- "default_username": "annita",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tamiko Rodriguez",
- "initials": "T R",
- "username": null,
- "title": null,
- "user_id": 22627,
- "lang": null,
- "notify_new_membership_requests": null
}, - "steps": [ ],
- "editable": true
}
]Create a new workflow for the organization.
object |
{- "workflow": {
- "name": "string"
}
}{- "id": 88,
- "organization_id": 1815,
- "user_id": 22645,
- "name": "Review Workflow",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:41:19.589Z",
- "updated_at": "2026-01-29T15:41:19.589Z",
- "auto": false,
- "access_request_id": null
}Get details of a specific workflow.
| id required | integer |
{- "id": 86,
- "name": "corporis",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:41:16.451Z",
- "updated_at": "2026-01-29T15:41:16.451Z",
- "user": {
- "id": 22636,
- "first_name": "Evette",
- "last_name": "Schumm",
- "created_at": "2026-01-29T15:41:13.876Z",
- "default_username": "tony_volkman",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Evette Schumm",
- "initials": "E S",
- "username": null,
- "title": null,
- "user_id": 22636,
- "lang": null,
- "notify_new_membership_requests": null
}, - "steps": [ ],
- "editable": true
}Update a workflow's settings.
| id required | integer |
object |
{- "workflow": {
- "name": "string"
}
}{- "name": "Updated Workflow",
- "id": 89,
- "organization_id": 1816,
- "user_id": 22654,
- "description": null,
- "aasm_state": null,
- "created_at": "2026-01-29T15:41:23.107Z",
- "updated_at": "2026-01-29T15:41:23.115Z",
- "auto": false,
- "access_request_id": null
}