Download OpenAPI specification:Download
Use your Mediagraph account via API with either a Personal Access Token or OAuth Access Token.
All endpoints using Personal Access Tokens (besides User specifics) require the OrganizationId header, which can be found in "Profile Settings" when logged into the Organization.
curl -u :YOUR_ACCESS_TOKEN \
-H "OrganizationId: 100" \
"https://api.mediagraph.io/api/assets/search?q=sunset"
OAuth Access Tokens use the Authorization header and are implicitly associated with the authorized Organization.
curl -H "Authorization: Bearer YOUR_OAUTH_TOKEN" \
"https://api.mediagraph.io/api/assets/search?q=sunset"
| Step | Method | URL |
|---|---|---|
| Authorize | GET or POST |
https://mediagraph.io/oauth/authorize?response_type=code&client_id=...&redirect_uri=...&state=... |
| Get Refresh Token | POST |
https://mediagraph.io/oauth/token?grant_type=authorization_code&token=... |
| Revoke Token | POST |
https://mediagraph.io/oauth/revoke?token=... |
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": 1073110872,
- "name": "Sulfur",
- "sub_type": "access_request",
- "path_names": [
- "Sulfur"
], - "path_slugs": [
- "sulfur"
], - "description": null,
- "created_at": "2026-03-20T18:39:26.081Z",
- "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": 1073110872,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073110872,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073110872,
- "view_settings": null,
- "access_request_id": 926561804,
- "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": 1015833890,
- "first_name": "Renaldo",
- "last_name": "Sanford",
- "created_at": "2026-03-20T18:39:19.885Z",
- "default_username": "dwight",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Renaldo Sanford",
- "initials": "R S",
- "username": null,
- "title": null,
- "user_id": 1015833890,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073110872-sulfur",
- "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": 926561811,
- "user_id": 1015833962,
- "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": 1073111089,
- "grant_lightbox_id": null,
- "created_at": "2026-03-20T18:39:54.270Z",
- "updated_at": "2026-03-20T18:39:54.286Z",
- "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": "32586d0f24339370fb1602be3d9b78f9",
- "user": {
- "id": 1015833962,
- "first_name": "Joseph",
- "last_name": "O'Kon",
- "created_at": "2026-03-20T18:39:49.752Z",
- "default_username": "gaylerippin",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Joseph O'Kon",
- "initials": "J O",
- "username": null,
- "title": null,
- "user_id": 1015833962,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "926561811-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": 926561808,
- "user_id": 1015833938,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Niobium",
- "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": 1073111016,
- "grant_lightbox_id": null,
- "created_at": "2026-03-20T18:39:44.907Z",
- "updated_at": "2026-03-20T18:39:44.924Z",
- "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": "1775259b47fb48e97d0ff6a9bb6eeb34",
- "user": {
- "id": 1015833938,
- "first_name": "Mac",
- "last_name": "Nicolas",
- "created_at": "2026-03-20T18:39:40.560Z",
- "default_username": "nevillewillms",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Mac Nicolas",
- "initials": "M N",
- "username": null,
- "title": null,
- "user_id": 1015833938,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "926561808-niobium",
- "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": 1018656509,
- "id": 926561812,
- "user_id": 1015833974,
- "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": 1073111125,
- "grant_lightbox_id": null,
- "created_at": "2026-03-20T18:39:58.827Z",
- "updated_at": "2026-03-20T18:39:59.113Z",
- "email": null,
- "code": "93cf336e2b7e2b5745362b0fa648ab0e",
- "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": 926561809,
- "user_id": 1015833950,
- "workflow_id": null,
- "aasm_state": "pending",
- "name": "Rubidium",
- "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": 1073111052,
- "grant_lightbox_id": null,
- "created_at": "2026-03-20T18:39:49.438Z",
- "updated_at": "2026-03-20T18:39:49.455Z",
- "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": "efd986594e7b26ebbda6779439f63f9d",
- "user": {
- "id": 1015833950,
- "first_name": "Loyd",
- "last_name": "Rogahn",
- "created_at": "2026-03-20T18:39:45.211Z",
- "default_username": "brittany",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Loyd Rogahn",
- "initials": "L R",
- "username": null,
- "title": null,
- "user_id": 1015833950,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "926561809-rubidium",
- "managable": true,
- "finalized_by": null,
- "custom_meta_values": [ ]
}, - "asset_group": {
- "id": 1073111052,
- "name": "Rubidium",
- "sub_type": "access_request",
- "path_names": [
- "Rubidium"
], - "path_slugs": [
- "rubidium"
], - "description": null,
- "created_at": "2026-03-20T18:39:49.442Z",
- "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": 1073111052,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073111052,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073111052,
- "view_settings": null,
- "access_request_id": 926561809,
- "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": 1015833950,
- "first_name": "Loyd",
- "last_name": "Rogahn",
- "created_at": "2026-03-20T18:39:45.211Z",
- "default_username": "brittany",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Loyd Rogahn",
- "initials": "L R",
- "username": null,
- "title": null,
- "user_id": 1015833950,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073111052-rubidium",
- "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": 926561813,
- "user_id": 1015833986,
- "workflow_id": 640905358,
- "aasm_state": "submitted",
- "name": "Rhodium",
- "description": null,
- "submitted_at": "2026-03-20T18:40:03.713Z",
- "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": 1073111161,
- "grant_lightbox_id": null,
- "created_at": "2026-03-20T18:40:03.419Z",
- "updated_at": "2026-03-20T18:40:03.732Z",
- "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": "9c69ce0cd133e60ca062d84d9f789d46",
- "user": {
- "id": 1015833986,
- "first_name": "Jeremiah",
- "last_name": "Thompson",
- "created_at": "2026-03-20T18:39:59.122Z",
- "default_username": "norris",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jeremiah Thompson",
- "initials": "J T",
- "username": null,
- "title": null,
- "user_id": 1015833986,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "926561813-rhodium",
- "managable": true,
- "finalized_by": null
}Get versions for an Asset.
| asset_id | integer Example: asset_id=1060943763 Asset ID |
| include_renditions | boolean Example: include_renditions=true Include list of downloadable sizes and formats |
[- {
- "id": 1061585671,
- "asset_id": 1060943763,
- "user_id": 1015834019,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "exercitationem.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-03-20T18:40:13.713Z",
- "updated_at": "2026-03-20T18:40:13.713Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 1015834019,
- "first_name": "Catrina",
- "last_name": "Tromp",
- "default_username": "paris",
- "confirmed_at": "2026-03-20T18:40:12.061Z",
- "created_at": "2026-03-20T18:40:12.062Z",
- "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": "Catrina Tromp",
- "initials": "C T",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834019
}, - "grid_url": null,
- "type": "Text",
- "mime_type": "text/csv",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "at-inventore11",
- "full_url": null,
- "renditions": [
- {
- "name": "original",
- "ext": "csv"
}
]
}, - {
- "id": 1061585670,
- "asset_id": 1060943763,
- "user_id": 1015834019,
- "number": 1,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "ea.jpg",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "jpg",
- "created_via": null,
- "previews_generated_at": "2026-03-20T18:40:13.463Z",
- "thumbs_count": null,
- "created_at": "2026-03-20T18:40:13.311Z",
- "updated_at": "2026-03-20T18:40:13.463Z",
- "is_head": false,
- "aasm_state": "processed",
- "user": {
- "id": 1015834019,
- "first_name": "Catrina",
- "last_name": "Tromp",
- "default_username": "paris",
- "confirmed_at": "2026-03-20T18:40:12.061Z",
- "created_at": "2026-03-20T18:40:12.062Z",
- "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": "Catrina Tromp",
- "initials": "C T",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834019
}, - "type": "Image",
- "mime_type": "image/jpeg",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "at-inventore11",
- "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=1060943764 Asset ID |
| number | integer Example: number=2 Asset Data Version Number |
{- "id": 1061585673,
- "asset_id": 1060943764,
- "user_id": 1015834032,
- "number": 2,
- "file_size": null,
- "width": null,
- "height": null,
- "filename": "illo.wav",
- "ppi": null,
- "captured_at": null,
- "meta": null,
- "duration": null,
- "frame_rate": null,
- "md5": null,
- "ext": "wav",
- "created_via": null,
- "previews_generated_at": null,
- "thumbs_count": null,
- "created_at": "2026-03-20T18:40:18.706Z",
- "updated_at": "2026-03-20T18:40:18.706Z",
- "thumb_url": null,
- "is_head": true,
- "aasm_state": "pending",
- "user": {
- "id": 1015834032,
- "first_name": "Dion",
- "last_name": "Bogisich",
- "default_username": "shinmueller",
- "confirmed_at": "2026-03-20T18:40:17.094Z",
- "created_at": "2026-03-20T18:40:17.095Z",
- "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": "Dion Bogisich",
- "initials": "D B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834032
}, - "grid_url": null,
- "type": "Audio",
- "mime_type": "audio/wav",
- "created_via_id": null,
- "created_via_meta": null,
- "is_version": true,
- "storage_folder_path": "illum_id12",
- "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 field |
| order | string Enum: "asc" "desc" Sort direction (default: desc) |
| sync | boolean Sets |
| aasm_state | string Enum: "pending" "uploaded" "processing" "processed" "processing_error" Search by Asset processing state (must have Manage Asset permissions). Defaults to |
| all_ids | boolean Return all Asset IDs in search results, un-paginated. |
| Total-Entries | integer |
{- "total_entries": 3,
- "total_display": null,
- "ids_in_selection": null,
- "filters": {
- "aspect": {
- "buckets": [
- {
- "key": "portrait",
- "from": 0,
- "to": 0.99,
- "doc_count": 0
}, - {
- "key": "square",
- "from": 0.999,
- "to": 1.001,
- "doc_count": 0
}, - {
- "key": "landscape",
- "from": 1.01,
- "to": 1.99,
- "doc_count": 0
}, - {
- "key": "panorama",
- "from": 2,
- "doc_count": 0
}
]
}, - "rating": {
- "doc_count_error_upper_bound": 0,
- "sum_other_doc_count": 0,
- "buckets": [
- {
- "key": 0,
- "doc_count": 3
}
]
}, - "visible_tag_names": {
- "doc_count_error_upper_bound": 0,
- "sum_other_doc_count": 0,
- "buckets": [ ],
- "display": "keywords"
}, - "created_at": {
- "buckets": [
- {
- "key": "Last Year",
- "from": 1735689600000,
- "from_as_string": "2025-01-01T00:00:00.000Z",
- "to": 1767225600000,
- "to_as_string": "2026-01-01T00:00:00.000Z",
- "doc_count": 0
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Last 30 Days",
- "from": 1771372800000,
- "from_as_string": "2026-02-18T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1772755200000,
- "from_as_string": "2026-03-06T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1773964800000,
- "from_as_string": "2026-03-20T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}
], - "display": "upload date",
- "captured_at": "capture date"
}, - "captured_at": {
- "buckets": [
- {
- "key": "Last Year",
- "from": 1735689600000,
- "from_as_string": "2025-01-01T00:00:00.000Z",
- "to": 1767225600000,
- "to_as_string": "2026-01-01T00:00:00.000Z",
- "doc_count": 0
}, - {
- "key": "This Year",
- "from": 1767225600000,
- "from_as_string": "2026-01-01T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Last 30 Days",
- "from": 1771372800000,
- "from_as_string": "2026-02-18T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Last 2 Weeks",
- "from": 1772755200000,
- "from_as_string": "2026-03-06T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "doc_count": 3
}, - {
- "key": "Today",
- "from": 1773964800000,
- "from_as_string": "2026-03-20T00:00:00.000Z",
- "to": 1774032028288,
- "to_as_string": "2026-03-20T18:40:28.288Z",
- "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": "Sushi 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": 957300474,
- "key_as_string": "Owned by Organization",
- "doc_count": 1,
- "parent": "Owned by Organization"
}, - {
- "key": 957300476,
- "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": 1060943767,
- "filename": "id.jpg",
- "file_size": null,
- "guid": "396d8636-eea9-4c13-adce-fd19b86c845a",
- "short_guid": "396d8636",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": 0,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1018656514,
- "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": 865182623,
- "user_id": 1015834053,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:40:26.620Z",
- "updated_at": "2026-03-20T18:40:27.103Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656514/0257c536/396d8636-eea9-4c13-adce-fd19b86c845a-id.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:40:26.618Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300476,
- "submitted_at": "2026-03-20T06:40:26.618Z",
- "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": 944091318,
- "text": "Sushi 27",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879205309
}
], - "user": {
- "id": 1015834053,
- "first_name": "Dick",
- "last_name": "Blick",
- "created_at": "2026-03-20T18:40:25.367Z",
- "default_username": "joslyntorphy",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dick Blick",
- "initials": "D B",
- "username": null,
- "title": null,
- "user_id": 1015834053,
- "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": "soluta-occaecati15",
- "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": "396d8636-eea9-4c13-adce-fd19b86c845a",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061585676,
- "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": [
- "Sushi 27"
]
}, - "others": { }
},
}, - {
- "id": 1060943766,
- "filename": "deleniti.txt",
- "file_size": null,
- "guid": "4901f677-d3cb-457c-b8e8-84bea0f39d36",
- "short_guid": "4901f677",
- "type": "Text",
- "ext": "txt",
- "duration": null,
- "md5": null,
- "mime_type": "text/plain",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": false,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": -1,
- "created_at": "2026-03-20T18:40:27.021Z",
- "updated_at": "2026-03-20T18:40:27.021Z"
}, - "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": 1018656514,
- "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": 865182622,
- "user_id": 1015834049,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:40:24.979Z",
- "updated_at": "2026-03-20T18:40:27.166Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656514/c6928488/4901f677-d3cb-457c-b8e8-84bea0f39d36-deleniti.txt",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:40:24.978Z",
- "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-03-20T06:40:24.978Z",
- "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": 1015834049,
- "first_name": "Blondell",
- "last_name": "Reichert",
- "created_at": "2026-03-20T18:40:23.744Z",
- "default_username": "frances_howell",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Blondell Reichert",
- "initials": "B R",
- "username": null,
- "title": null,
- "user_id": 1015834049,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "ea-numquam14",
- "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": "4901f677-d3cb-457c-b8e8-84bea0f39d36",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061585675,
- "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": 1060943765,
- "filename": "deserunt.jpg",
- "file_size": null,
- "guid": "93ceb9e2-b20a-4f84-9242-9aee2478eac4",
- "short_guid": "93ceb9e2",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:40:27.019Z",
- "updated_at": "2026-03-20T18:40:27.019Z"
}, - "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": 1018656514,
- "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": 865182621,
- "user_id": 1015834045,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:40:23.340Z",
- "updated_at": "2026-03-20T18:40:23.407Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656514/3fc1f602/93ceb9e2-b20a-4f84-9242-9aee2478eac4-deserunt.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:40:23.338Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300474,
- "submitted_at": "2026-03-20T06:40:23.338Z",
- "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": 1015834045,
- "first_name": "Hilton",
- "last_name": "Stiedemann",
- "created_at": "2026-03-20T18:40:22.107Z",
- "default_username": "vancecrist",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Hilton Stiedemann",
- "initials": "H S",
- "username": null,
- "title": null,
- "user_id": 1015834045,
- "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": "ut_quisquam13",
- "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": "93ceb9e2-b20a-4f84-9242-9aee2478eac4",
- "originalDocumentId": null,
- "iccProfileDescription": null,
- "instanceId": 1061585674,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "exif": {
- "width": null,
- "height": null,
- "dateTimeOriginal": null,
- "cameraModel": null,
- "orientation": null,
- "exposureTime": null,
- "apertureValue": null,
- "isoSpeedRatings": null,
- "colorSpace": null,
- "resolution": null
}, - "iptc": {
- "copyrightNotice": null,
- "caption": null,
- "instructions": null,
- "captionWriter": null,
- "headline": null,
- "credit": null,
- "city": null,
- "countryName": null,
- "provinceState": null
}, - "custom": { },
- "others": { }
},
}
]
}Get the asset details. ID can also be the Asset GUID.
| id required | integer |
| sync | boolean Sets |
| include_renditions | boolean Default: false Include renditions |
| source_url | string Source URL for Web Page assets (a PDF is generated from this URL) |
{- "id": 1060943783,
- "filename": "rerum.jpg",
- "file_size": null,
- "guid": "1bee3b03-6fb3-4b38-842b-ca6c790d24e9",
- "short_guid": "1bee3b03",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:41:20.032Z",
- "updated_at": "2026-03-20T18:41:20.032Z"
}, - "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": 1018656519,
- "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": 865182639,
- "user_id": 1015834168,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:41:16.344Z",
- "updated_at": "2026-03-20T18:41:16.412Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656519/25d75215/1bee3b03-6fb3-4b38-842b-ca6c790d24e9-rerum.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:41:16.343Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300514,
- "submitted_at": "2026-03-20T06:41:16.343Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-03-20T18:41:20.055Z",
- "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": 1015834168,
- "first_name": "Celine",
- "last_name": "Johnston",
- "created_at": "2026-03-20T18:41:15.094Z",
- "default_username": "mozell_luettgen",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Celine Johnston",
- "initials": "C J",
- "username": null,
- "title": null,
- "user_id": 1015834168,
- "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": "id-repellat33",
- "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,
- "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": 1073111667,
- "created_at": "2026-03-20T18:41:16.328Z",
- "name": "Paul Klee33",
- "description": "Error corporis vitae. Perspiciatis aut et. Numquam voluptatem necessitatibus.",
- "slug": "id-repellat33",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Paul Klee33"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "id-repellat33"
], - "asset_group_id": 1073111667,
- "has_workflow_steps": false,
- "contribution_id": 1025860365,
- "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": 1015834171,
- "first_name": "Ricarda",
- "last_name": "Lockman",
- "created_at": "2026-03-20T18:41:15.781Z",
- "default_username": "temple",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ricarda Lockman",
- "initials": "R L",
- "username": null,
- "title": null,
- "user_id": 1015834171,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300514,
- "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-03-20T18:41:12.010Z",
- "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": 957300515,
- "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-03-20T18:41:12.012Z",
- "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": 957300516,
- "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-03-20T18:41:12.013Z",
- "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": 957300517,
- "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-03-20T18:41:12.015Z",
- "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": 957300518,
- "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-03-20T18:41:12.016Z",
- "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": 957300519,
- "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-03-20T18:41:12.018Z",
- "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": 957300520,
- "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-03-20T18:41:12.020Z",
- "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": 957300521,
- "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-03-20T18:41:12.021Z",
- "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": 957300514,
- "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-03-20T18:41:12.010Z",
- "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": 865182639,
- "user_id": 1015834169,
- "guid": "25d75215",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:41:16.340Z",
- "updated_at": "2026-03-20T18:41:16.743Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860366,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860366,
- "name": "aspernatur",
- "text": "Sed quia dolores. Sunt ipsum atque. Quia eos ex.",
- "featured": true,
- "slug": "qui_officia",
- "storage_folder_id": 1073111667,
- "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-03-20T18:41:16.338Z",
- "updated_at": "2026-03-20T18:41:16.338Z",
- "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": "1025860366-aspernatur",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073111667,
- "created_at": "2026-03-20T18:41:16.328Z",
- "name": "Paul Klee33",
- "description": "Error corporis vitae. Perspiciatis aut et. Numquam voluptatem necessitatibus.",
- "slug": "id-repellat33",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Paul Klee33"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "id-repellat33"
], - "asset_group_id": 1073111667,
- "has_workflow_steps": false,
- "contribution_id": 1025860365,
- "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": 1015834171,
- "first_name": "Ricarda",
- "last_name": "Lockman",
- "created_at": "2026-03-20T18:41:15.781Z",
- "default_username": "temple",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ricarda Lockman",
- "initials": "R L",
- "username": null,
- "title": null,
- "user_id": 1015834171,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834169,
- "first_name": "Sonny",
- "last_name": "Kuhlman",
- "created_at": "2026-03-20T18:41:15.647Z",
- "default_username": "raeann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sonny Kuhlman",
- "initials": "S K",
- "username": null,
- "title": null,
- "user_id": 1015834169,
- "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"
], - "latitude": 0,
- "longitude": 0,
- "rights_package_id": 0,
- "rights_status": "owned",
- "contract": true,
- "release": true,
- "custom_meta": {
- "Custom Meta Field 73": "Hummus",
- "Custom Meta Field 74": [
- "Seafood Paella 55"
]
}, - "block_level": 0,
- "source_url": "string"
}, - "sync": true
}{- "id": 1060943798,
- "filename": "maiores.jpg",
- "file_size": null,
- "guid": "29a5247b-6d0f-4999-b092-e4a9ba536976",
- "short_guid": "29a5247b",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": "Updated Description.",
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:42:06.833Z",
- "updated_at": "2026-03-20T18:42:06.833Z"
}, - "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": 1018656524,
- "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": 865182654,
- "user_id": 1015834273,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:03.083Z",
- "updated_at": "2026-03-20T18:42:07.176Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656524/fc1bc1ae/29a5247b-6d0f-4999-b092-e4a9ba536976-maiores.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:03.081Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300554,
- "submitted_at": "2026-03-20T06:42:03.081Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": null,
- "trashed_at": null,
- "last_external_sync_at": "2026-03-20T18:42:07.789Z",
- "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": 944091348,
- "text": "Hummus",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879205342
}, - {
- "id": 944091346,
- "text": "Seafood Paella 55",
- "color_label": null,
- "date": null,
- "custom_meta_field_id": 879205343
}
], - "user": {
- "id": 1015834273,
- "first_name": "Bertie",
- "last_name": "Fritsch",
- "created_at": "2026-03-20T18:42:01.812Z",
- "default_username": "lavonia",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bertie Fritsch",
- "initials": "B F",
- "username": null,
- "title": null,
- "user_id": 1015834273,
- "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": "soluta-ipsum48",
- "tags": [
- {
- "id": 1035563705,
- "name": "New Tag 1",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087439,
- "tagged_at": "2026-03-20T18:42:07.150Z",
- "tag_updated_at": "2026-03-20T18:42:07.153Z",
- "sub_type": "keyword",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false
}, - {
- "id": 1035563706,
- "name": "New Tag 2",
- "description": null,
- "link": null,
- "list": "visible",
- "tag_id": 1070087440,
- "tagged_at": "2026-03-20T18:42:07.159Z",
- "tag_updated_at": "2026-03-20T18:42:07.162Z",
- "sub_type": "keyword",
- "date_start": null,
- "date_end": null,
- "location_country": null,
- "location_country_code": null,
- "location_state": null,
- "location_city": null,
- "location_name": null,
- "is_lead_tag": false,
- "lead_tag_id": null,
- "synonym_names": [ ],
- "thumb_url": null,
- "gtin": null,
- "sku": null,
- "artwork_creator": null,
- "artwork_date_created": null,
- "artwork_medium": null,
- "artwork_style_period": null,
- "artwork_source": null,
- "artwork_inventory_number": null,
- "artwork_copyright_notice": null,
- "artwork_circa_date_created": null,
- "artwork_content_description": null,
- "artwork_contribution_description": null,
- "artwork_creator_id": null,
- "artwork_copyright_owner_id": null,
- "artwork_licensor_id": null,
- "artwork_licensor_name": null,
- "artwork_physical_description": null,
- "artwork_source_inventory_url": null,
- "artwork_title": null,
- "collection_management_system": null,
- "cms_id": null,
- "in_taxonomy": false
}
], - "aspect": null,
- "transcript": null,
- "transcript_version": null,
- "vtt_url": null,
- "transcript_output_json_url": null,
- "has_ocr_content": null,
- "description_writer": null,
- "country_code": null,
- "iptc_event_id": null,
- "organization_in_image_name": null,
- "extended_description": null,
- "iptc_job_id": null,
- "intellectual_genre": null,
- "scene": null,
- "subject_code": null,
- "instructions": null,
- "iptc_rights": null,
- "web_statement": null,
- "model_release_status": null,
- "property_release_status": null,
- "authors_position": null,
- "iptc_source": null,
- "copyright_owner": null,
- "iptc_dig_image_guid": null,
- "image_supplier": null,
- "iptc_image_supplier_image_id": null,
- "licensor": null,
- "addl_model_info": null,
- "iptc_model_release_id": null,
- "model_age": null,
- "minor_model_age_disclosure": null,
- "iptc_property_release_id": null,
- "has_published_images": false,
- "data_versions_count": 1,
- "trashed_by": null,
- "creator_contact_info": null,
- "auto_tags_count": 0,
- "checked_in_at": null,
- "checkout_integration": null,
- "bedrock_prompt": null,
- "bedrock_data": null,
- "downloads_count": 0,
- "views_count": 0,
- "up_votes_count": 1,
- "down_votes_count": 0,
- "pdf_url": false,
- "meta_structs": [ ],
- "links": [
- {
- "id": 14,
- "created_at": "2026-03-20T18:42:07.131Z",
- "title": "Mediagraph",
- "image": null,
- "description": null,
- "author": null,
- "spidered_at": "2026-03-20T18:42:07.730Z",
- "meta_error": null
}
], - "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073111977,
- "created_at": "2026-03-20T18:42:03.069Z",
- "name": "Seurat48",
- "description": "Qui qui quidem. Eligendi blanditiis et. Nostrum placeat quasi.",
- "slug": "soluta-ipsum48",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat48"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "soluta-ipsum48"
], - "asset_group_id": 1073111977,
- "has_workflow_steps": false,
- "contribution_id": 1025860565,
- "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": 1015834276,
- "first_name": "Diego",
- "last_name": "Stroman",
- "created_at": "2026-03-20T18:42:02.503Z",
- "default_username": "hugh",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Diego Stroman",
- "initials": "D S",
- "username": null,
- "title": null,
- "user_id": 1015834276,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300554,
- "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-03-20T18:41:58.692Z",
- "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": 957300555,
- "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-03-20T18:41:58.693Z",
- "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": 957300556,
- "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-03-20T18:41:58.695Z",
- "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": 957300557,
- "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-03-20T18:41:58.697Z",
- "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": 957300558,
- "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-03-20T18:41:58.698Z",
- "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": 957300559,
- "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-03-20T18:41:58.700Z",
- "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": 957300560,
- "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-03-20T18:41:58.702Z",
- "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": 957300561,
- "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-03-20T18:41:58.704Z",
- "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": 957300554,
- "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-03-20T18:41:58.692Z",
- "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": 865182654,
- "user_id": 1015834274,
- "guid": "fc1bc1ae",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:03.079Z",
- "updated_at": "2026-03-20T18:42:03.476Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860566,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860566,
- "name": "nihil",
- "text": "Inventore ex facere. Facere ex distinctio. Nemo vero cum.",
- "featured": true,
- "slug": "vero-qui",
- "storage_folder_id": 1073111977,
- "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-03-20T18:42:03.077Z",
- "updated_at": "2026-03-20T18:42:03.077Z",
- "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": "1025860566-nihil",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073111977,
- "created_at": "2026-03-20T18:42:03.069Z",
- "name": "Seurat48",
- "description": "Qui qui quidem. Eligendi blanditiis et. Nostrum placeat quasi.",
- "slug": "soluta-ipsum48",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat48"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "soluta-ipsum48"
], - "asset_group_id": 1073111977,
- "has_workflow_steps": false,
- "contribution_id": 1025860565,
- "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": 1015834276,
- "first_name": "Diego",
- "last_name": "Stroman",
- "created_at": "2026-03-20T18:42:02.503Z",
- "default_username": "hugh",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Diego Stroman",
- "initials": "D S",
- "username": null,
- "title": null,
- "user_id": 1015834276,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834274,
- "first_name": "Pricilla",
- "last_name": "Runte",
- "created_at": "2026-03-20T18:42:02.367Z",
- "default_username": "francene_turcotte",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Pricilla Runte",
- "initials": "P R",
- "username": null,
- "title": null,
- "user_id": 1015834274,
- "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" "medium" "full" "original" The maximum size requested for assets in the download (default original). To use a specific Crop Preset, use the format |
| watermarked | boolean Request watermarked versions |
| via | string Example: via=My-Integration Description of the app or integration making the API call |
| version_number | integer Example: version_number=1 Data Version number to download |
| skip_meta | boolean Default: false Do not write metadata on the fly to the file (original file size and MD5 will match) |
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": 1060943804,
- "filename": "quos.jpg",
- "file_size": null,
- "guid": "40e88a83-5b16-4b42-af08-a9166fa22f00",
- "short_guid": "40e88a83",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:42:24.887Z",
- "updated_at": "2026-03-20T18:42:24.887Z"
}, - "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": 1018656526,
- "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": 865182660,
- "user_id": 1015834315,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:21.079Z",
- "updated_at": "2026-03-20T18:42:24.901Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656526/da6548a6/40e88a83-5b16-4b42-af08-a9166fa22f00-quos.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:21.078Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300570,
- "submitted_at": "2026-03-20T06:42:21.078Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": "2026-03-20T18:42:24.897Z",
- "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": 1015834315,
- "first_name": "Calvin",
- "last_name": "Kilback",
- "created_at": "2026-03-20T18:42:19.798Z",
- "default_username": "murrayrosenbaum",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Kilback",
- "initials": "C K",
- "username": null,
- "title": null,
- "user_id": 1015834315,
- "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": "temporibus-quae54",
- "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,
- "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": 1015834306,
- "first_name": "Lenita",
- "last_name": "Ward",
- "default_username": "ashlie_lakin",
- "confirmed_at": "2026-03-20T18:42:16.473Z",
- "created_at": "2026-03-20T18:42:16.474Z",
- "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": "Lenita Ward",
- "initials": "L W",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834306
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073112101,
- "created_at": "2026-03-20T18:42:21.065Z",
- "name": "Joan Miro54",
- "description": "Dolorum dolore odit. Nam commodi a. Provident possimus corporis.",
- "slug": "temporibus-quae54",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro54"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "temporibus-quae54"
], - "asset_group_id": 1073112101,
- "has_workflow_steps": false,
- "contribution_id": 1025860645,
- "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": 1015834318,
- "first_name": "Eusebio",
- "last_name": "O'Connell",
- "created_at": "2026-03-20T18:42:20.505Z",
- "default_username": "steviesmith",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eusebio O'Connell",
- "initials": "E O",
- "username": null,
- "title": null,
- "user_id": 1015834318,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300570,
- "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-03-20T18:42:16.644Z",
- "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": 957300571,
- "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-03-20T18:42:16.646Z",
- "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": 957300572,
- "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-03-20T18:42:16.648Z",
- "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": 957300573,
- "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-03-20T18:42:16.649Z",
- "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": 957300574,
- "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-03-20T18:42:16.651Z",
- "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": 957300575,
- "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-03-20T18:42:16.652Z",
- "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": 957300576,
- "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-03-20T18:42:16.654Z",
- "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": 957300577,
- "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-03-20T18:42:16.655Z",
- "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": 957300570,
- "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-03-20T18:42:16.644Z",
- "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": 865182660,
- "user_id": 1015834316,
- "guid": "da6548a6",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:21.075Z",
- "updated_at": "2026-03-20T18:42:21.481Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860646,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860646,
- "name": "accusantium",
- "text": "Aspernatur id eveniet. Neque placeat doloremque. Suscipit ut cupiditate.",
- "featured": true,
- "slug": "sed-mollitia",
- "storage_folder_id": 1073112101,
- "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-03-20T18:42:21.073Z",
- "updated_at": "2026-03-20T18:42:21.073Z",
- "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": "1025860646-accusantium",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073112101,
- "created_at": "2026-03-20T18:42:21.065Z",
- "name": "Joan Miro54",
- "description": "Dolorum dolore odit. Nam commodi a. Provident possimus corporis.",
- "slug": "temporibus-quae54",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro54"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "temporibus-quae54"
], - "asset_group_id": 1073112101,
- "has_workflow_steps": false,
- "contribution_id": 1025860645,
- "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": 1015834318,
- "first_name": "Eusebio",
- "last_name": "O'Connell",
- "created_at": "2026-03-20T18:42:20.505Z",
- "default_username": "steviesmith",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eusebio O'Connell",
- "initials": "E O",
- "username": null,
- "title": null,
- "user_id": 1015834318,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834316,
- "first_name": "Emil",
- "last_name": "Morissette",
- "created_at": "2026-03-20T18:42:20.366Z",
- "default_username": "eura",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Emil Morissette",
- "initials": "E M",
- "username": null,
- "title": null,
- "user_id": 1015834316,
- "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": 1060943807,
- "filename": "similique.jpg",
- "file_size": null,
- "guid": "7d26ffd7-cd85-4d3f-9420-34dfb5721c59",
- "short_guid": "7d26ffd7",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:42:33.536Z",
- "updated_at": "2026-03-20T18:42:33.536Z"
}, - "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": 1018656527,
- "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": 865182663,
- "user_id": 1015834336,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:29.720Z",
- "updated_at": "2026-03-20T18:42:33.550Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656527/6205355e/7d26ffd7-cd85-4d3f-9420-34dfb5721c59-similique.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:29.718Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300578,
- "submitted_at": "2026-03-20T06:42:29.718Z",
- "latitude": null,
- "longitude": null,
- "optimization_requested_at": null,
- "optimization_completed_at": "2026-03-20T18:42:33.545Z",
- "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": 1015834336,
- "first_name": "Eddy",
- "last_name": "Kassulke",
- "created_at": "2026-03-20T18:42:28.368Z",
- "default_username": "zachery",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Eddy Kassulke",
- "initials": "E K",
- "username": null,
- "title": null,
- "user_id": 1015834336,
- "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": "porro_pariatur57",
- "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,
- "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": 1015834327,
- "first_name": "Ceola",
- "last_name": "Hills",
- "default_username": "dori",
- "confirmed_at": "2026-03-20T18:42:25.038Z",
- "created_at": "2026-03-20T18:42:25.039Z",
- "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": "Ceola Hills",
- "initials": "C H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834327
}, - "pdf_url": false,
- "meta_structs": [ ],
- "links": [ ],
- "download_sizes": [
- "original",
- "full",
- "medium",
- "small"
], - "storage_folder": {
- "id": 1073112163,
- "created_at": "2026-03-20T18:42:29.706Z",
- "name": "Gauguin57",
- "description": "Et assumenda molestiae. In mollitia qui. Doloremque sit optio.",
- "slug": "porro_pariatur57",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin57"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "porro_pariatur57"
], - "asset_group_id": 1073112163,
- "has_workflow_steps": false,
- "contribution_id": 1025860685,
- "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": 1015834339,
- "first_name": "Camelia",
- "last_name": "Leuschke",
- "created_at": "2026-03-20T18:42:29.129Z",
- "default_username": "neal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Camelia Leuschke",
- "initials": "C L",
- "username": null,
- "title": null,
- "user_id": 1015834339,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300578,
- "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-03-20T18:42:25.214Z",
- "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": 957300579,
- "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-03-20T18:42:25.215Z",
- "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": 957300580,
- "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-03-20T18:42:25.217Z",
- "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": 957300581,
- "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-03-20T18:42:25.218Z",
- "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": 957300582,
- "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-03-20T18:42:25.220Z",
- "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": 957300583,
- "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-03-20T18:42:25.222Z",
- "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": 957300584,
- "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-03-20T18:42:25.224Z",
- "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": 957300585,
- "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-03-20T18:42:25.226Z",
- "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": 957300578,
- "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-03-20T18:42:25.214Z",
- "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": 865182663,
- "user_id": 1015834337,
- "guid": "6205355e",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:29.716Z",
- "updated_at": "2026-03-20T18:42:30.114Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860686,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860686,
- "name": "at",
- "text": "Impedit reiciendis expedita. Facere dolorum qui. Ea qui iusto.",
- "featured": true,
- "slug": "hic_voluptatibus",
- "storage_folder_id": 1073112163,
- "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-03-20T18:42:29.715Z",
- "updated_at": "2026-03-20T18:42:29.715Z",
- "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": "1025860686-at",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073112163,
- "created_at": "2026-03-20T18:42:29.706Z",
- "name": "Gauguin57",
- "description": "Et assumenda molestiae. In mollitia qui. Doloremque sit optio.",
- "slug": "porro_pariatur57",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin57"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "porro_pariatur57"
], - "asset_group_id": 1073112163,
- "has_workflow_steps": false,
- "contribution_id": 1025860685,
- "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": 1015834339,
- "first_name": "Camelia",
- "last_name": "Leuschke",
- "created_at": "2026-03-20T18:42:29.129Z",
- "default_username": "neal",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Camelia Leuschke",
- "initials": "C L",
- "username": null,
- "title": null,
- "user_id": 1015834339,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834337,
- "first_name": "Silvia",
- "last_name": "Smitham",
- "created_at": "2026-03-20T18:42:28.967Z",
- "default_username": "tracy",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Silvia Smitham",
- "initials": "S S",
- "username": null,
- "title": null,
- "user_id": 1015834337,
- "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": 1060943810,
- "filename": "pariatur.jpg",
- "file_size": null,
- "guid": "aaa6fdf2-5ea7-42ef-9fca-5978d0b41ab3",
- "short_guid": "aaa6fdf2",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:42:42.088Z",
- "updated_at": "2026-03-20T18:42:42.088Z"
}, - "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": 1018656528,
- "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": 865182666,
- "user_id": 1015834357,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:38.324Z",
- "updated_at": "2026-03-20T18:42:38.394Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656528/089e88da/aaa6fdf2-5ea7-42ef-9fca-5978d0b41ab3-pariatur.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:38.322Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300586,
- "submitted_at": "2026-03-20T06:42:38.322Z",
- "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": 1015834357,
- "first_name": "Keshia",
- "last_name": "Reichel",
- "created_at": "2026-03-20T18:42:37.044Z",
- "default_username": "sterling_wisoky",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Keshia Reichel",
- "initials": "K R",
- "username": null,
- "title": null,
- "user_id": 1015834357,
- "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": "alias-sit60",
- "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,
- "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": 1073112225,
- "created_at": "2026-03-20T18:42:38.310Z",
- "name": "Joan Miro60",
- "description": "Dolorem quis at. Eligendi voluptatum perspiciatis. Molestias in quasi.",
- "slug": "alias-sit60",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro60"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "alias-sit60"
], - "asset_group_id": 1073112225,
- "has_workflow_steps": false,
- "contribution_id": 1025860725,
- "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": 1015834360,
- "first_name": "Burton",
- "last_name": "Ward",
- "created_at": "2026-03-20T18:42:37.738Z",
- "default_username": "christiemaggio",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Burton Ward",
- "initials": "B W",
- "username": null,
- "title": null,
- "user_id": 1015834360,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300586,
- "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-03-20T18:42:33.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,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300587,
- "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-03-20T18:42:33.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,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300588,
- "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-03-20T18:42:33.853Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300589,
- "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-03-20T18:42:33.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,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300590,
- "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-03-20T18:42:33.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,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300591,
- "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-03-20T18:42:33.858Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300592,
- "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-03-20T18:42:33.860Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300593,
- "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-03-20T18:42:33.862Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true
}
], - "rights_package": {
- "id": 957300586,
- "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-03-20T18:42:33.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,
- "user": {
- "id": 1015834348,
- "name": "Jeanett Keeling",
- "avatar_url": null
}, - "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 865182666,
- "user_id": 1015834358,
- "guid": "089e88da",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:38.320Z",
- "updated_at": "2026-03-20T18:42:38.717Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860726,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860726,
- "name": "aut",
- "text": "Qui voluptatem et. Temporibus aut minus. Minus magnam vitae.",
- "featured": true,
- "slug": "repudiandae_sed",
- "storage_folder_id": 1073112225,
- "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-03-20T18:42:38.318Z",
- "updated_at": "2026-03-20T18:42:38.318Z",
- "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": "1025860726-aut",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073112225,
- "created_at": "2026-03-20T18:42:38.310Z",
- "name": "Joan Miro60",
- "description": "Dolorem quis at. Eligendi voluptatum perspiciatis. Molestias in quasi.",
- "slug": "alias-sit60",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Joan Miro60"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "alias-sit60"
], - "asset_group_id": 1073112225,
- "has_workflow_steps": false,
- "contribution_id": 1025860725,
- "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": 1015834360,
- "first_name": "Burton",
- "last_name": "Ward",
- "created_at": "2026-03-20T18:42:37.738Z",
- "default_username": "christiemaggio",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Burton Ward",
- "initials": "B W",
- "username": null,
- "title": null,
- "user_id": 1015834360,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834358,
- "first_name": "Hana",
- "last_name": "Daniel",
- "created_at": "2026-03-20T18:42:37.602Z",
- "default_username": "mikki",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Hana Daniel",
- "initials": "H D",
- "username": null,
- "title": null,
- "user_id": 1015834358,
- "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": 1060943816,
- "filename": "sequi.jpg",
- "file_size": null,
- "guid": "ee20d092-501e-45ab-876c-db55970ce32c",
- "short_guid": "ee20d092",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1018656529,
- "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": 865182672,
- "user_id": 1015834390,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:51.985Z",
- "updated_at": "2026-03-20T18:42:52.539Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656529/4f1248cd/ee20d092-501e-45ab-876c-db55970ce32c-sequi.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:51.983Z",
- "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-03-20T06:42:51.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": 1015834390,
- "first_name": "Wilbur",
- "last_name": "Koelpin",
- "created_at": "2026-03-20T18:42:50.690Z",
- "default_username": "traceywiegand",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Wilbur Koelpin",
- "initials": "W K",
- "username": null,
- "title": null,
- "user_id": 1015834390,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "qui_repudiandae66",
- "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,
- "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": 1073112320,
- "created_at": "2026-03-20T18:42:51.971Z",
- "name": "Seurat66",
- "description": "Dolor ullam sed. Dolore beatae excepturi. Iusto quae reiciendis.",
- "slug": "qui_repudiandae66",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat66"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui_repudiandae66"
], - "asset_group_id": 1073112320,
- "has_workflow_steps": false,
- "contribution_id": 1025860789,
- "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": 1015834393,
- "first_name": "Kitty",
- "last_name": "Sawayn",
- "created_at": "2026-03-20T18:42:51.402Z",
- "default_username": "domingo",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kitty Sawayn",
- "initials": "K S",
- "username": null,
- "title": null,
- "user_id": 1015834393,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300594,
- "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-03-20T18:42:42.407Z",
- "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": 957300595,
- "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-03-20T18:42:42.409Z",
- "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": 957300596,
- "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-03-20T18:42:42.411Z",
- "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": 957300597,
- "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-03-20T18:42:42.414Z",
- "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": 957300598,
- "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-03-20T18:42:42.416Z",
- "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": 957300599,
- "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-03-20T18:42:42.418Z",
- "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": 957300600,
- "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-03-20T18:42:42.420Z",
- "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": 957300601,
- "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-03-20T18:42:42.421Z",
- "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": 865182672,
- "user_id": 1015834391,
- "guid": "4f1248cd",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:51.981Z",
- "updated_at": "2026-03-20T18:42:52.388Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860790,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860790,
- "name": "dolore",
- "text": "Et reiciendis mollitia. Recusandae et rem. Et quaerat est.",
- "featured": true,
- "slug": "et-dolorum",
- "storage_folder_id": 1073112320,
- "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-03-20T18:42:51.979Z",
- "updated_at": "2026-03-20T18:42:51.979Z",
- "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": "1025860790-dolore",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073112320,
- "created_at": "2026-03-20T18:42:51.971Z",
- "name": "Seurat66",
- "description": "Dolor ullam sed. Dolore beatae excepturi. Iusto quae reiciendis.",
- "slug": "qui_repudiandae66",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Seurat66"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "qui_repudiandae66"
], - "asset_group_id": 1073112320,
- "has_workflow_steps": false,
- "contribution_id": 1025860789,
- "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": 1015834393,
- "first_name": "Kitty",
- "last_name": "Sawayn",
- "created_at": "2026-03-20T18:42:51.402Z",
- "default_username": "domingo",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kitty Sawayn",
- "initials": "K S",
- "username": null,
- "title": null,
- "user_id": 1015834393,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834391,
- "first_name": "Granville",
- "last_name": "Aufderhar",
- "created_at": "2026-03-20T18:42:51.262Z",
- "default_username": "randelljerde",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Granville Aufderhar",
- "initials": "G A",
- "username": null,
- "title": null,
- "user_id": 1015834391,
- "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": 1060943817,
- "filename": "sit.jpg",
- "file_size": null,
- "guid": "ed7e4903-e4af-4de2-b8b5-e3e714ebadcf",
- "short_guid": "ed7e4903",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": false,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": true,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": {
- "value": 1,
- "created_at": "2026-03-20T18:43:01.091Z",
- "updated_at": "2026-03-20T18:43:01.091Z"
}, - "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": 1018656530,
- "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": 865182673,
- "user_id": 1015834403,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:42:57.263Z",
- "updated_at": "2026-03-20T18:43:01.284Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656530/8c155463/ed7e4903-e4af-4de2-b8b5-e3e714ebadcf-sit.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:42:57.261Z",
- "captured_at_truncation": null,
- "captured_at_offset": null,
- "notes": null,
- "created_via": null,
- "created_via_id": null,
- "vector": false,
- "rights_package_id": 957300602,
- "submitted_at": "2026-03-20T06:42:57.261Z",
- "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": 1015834403,
- "first_name": "Harrison",
- "last_name": "Trantow",
- "created_at": "2026-03-20T18:42:55.984Z",
- "default_username": "daniela",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Harrison Trantow",
- "initials": "H T",
- "username": null,
- "title": null,
- "user_id": 1015834403,
- "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_tempora67",
- "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,
- "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": 1073112360,
- "created_at": "2026-03-20T18:42:57.249Z",
- "name": "Raphael67",
- "description": "Fuga rem incidunt. In dolores animi. Dolor deserunt autem.",
- "slug": "occaecati_tempora67",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Raphael67"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "occaecati_tempora67"
], - "asset_group_id": 1073112360,
- "has_workflow_steps": false,
- "contribution_id": 1025860813,
- "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": 1015834406,
- "first_name": "Ellis",
- "last_name": "Sipes",
- "created_at": "2026-03-20T18:42:56.688Z",
- "default_username": "janis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ellis Sipes",
- "initials": "E S",
- "username": null,
- "title": null,
- "user_id": 1015834406,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957300602,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300603,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300604,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300605,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300606,
- "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-03-20T18:42:52.853Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300607,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300608,
- "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-03-20T18:42:52.857Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957300609,
- "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-03-20T18:42:52.859Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true
}
], - "rights_package": {
- "id": 957300602,
- "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-03-20T18:42:52.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,
- "user": {
- "id": 1015834394,
- "name": "Ambrose Skiles",
- "avatar_url": null
}, - "editable": true,
- "contracts": [ ]
}, - "upload": {
- "id": 865182673,
- "user_id": 1015834404,
- "guid": "8c155463",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:42:57.258Z",
- "updated_at": "2026-03-20T18:42:57.658Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025860814,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "completed",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 1,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025860814,
- "name": "laboriosam",
- "text": "Sed eaque quia. Magni molestiae neque. Quo tempore aspernatur.",
- "featured": true,
- "slug": "ut_fugit",
- "storage_folder_id": 1073112360,
- "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-03-20T18:42:57.257Z",
- "updated_at": "2026-03-20T18:42:57.257Z",
- "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": "1025860814-laboriosam",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073112360,
- "created_at": "2026-03-20T18:42:57.249Z",
- "name": "Raphael67",
- "description": "Fuga rem incidunt. In dolores animi. Dolor deserunt autem.",
- "slug": "occaecati_tempora67",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Raphael67"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "occaecati_tempora67"
], - "asset_group_id": 1073112360,
- "has_workflow_steps": false,
- "contribution_id": 1025860813,
- "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": 1015834406,
- "first_name": "Ellis",
- "last_name": "Sipes",
- "created_at": "2026-03-20T18:42:56.688Z",
- "default_username": "janis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Ellis Sipes",
- "initials": "E S",
- "username": null,
- "title": null,
- "user_id": 1015834406,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 0
}, - "user": {
- "id": 1015834404,
- "first_name": "Sindy",
- "last_name": "Skiles",
- "created_at": "2026-03-20T18:42:56.553Z",
- "default_username": "socorro",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Sindy Skiles",
- "initials": "S S",
- "username": null,
- "title": null,
- "user_id": 1015834404,
- "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": [
- 1060943818,
- 1060943819
], - "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) |
[- 1060943829
]| 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": 1035563707,
- "name": "new-tag-1",
- "description": null,
- "list": "visible",
- "tag_id": 1070087441,
- "tagged_at": "2026-03-20T18:44:30.104Z",
- "tag_updated_at": "2026-03-20T18:44:30.107Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "tagged_by": {
- "id": 1015834610,
- "first_name": "Larry",
- "last_name": "Bauch",
- "created_at": "2026-03-20T18:44:21.527Z",
- "default_username": "maggie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Larry Bauch",
- "initials": "L B",
- "username": null,
- "title": null,
- "user_id": 1015834610,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 1035563708,
- "name": "new-tag-2",
- "description": null,
- "list": "visible",
- "tag_id": 1070087442,
- "tagged_at": "2026-03-20T18:44:30.113Z",
- "tag_updated_at": "2026-03-20T18:44:30.117Z",
- "taxonomy_path_names": [ ],
- "sub_type": "keyword",
- "source": "manual",
- "tagged_by": {
- "id": 1015834610,
- "first_name": "Larry",
- "last_name": "Bauch",
- "created_at": "2026-03-20T18:44:21.527Z",
- "default_username": "maggie",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Larry Bauch",
- "initials": "L B",
- "username": null,
- "title": null,
- "user_id": 1015834610,
- "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": "dolorem.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015834724,
- "first_name": "Kim",
- "last_name": "Armstrong",
- "default_username": "clarkfay",
- "confirmed_at": "2026-03-20T18:45:09.471Z",
- "created_at": "2026-03-20T18:45:09.472Z",
- "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": "Kim Armstrong",
- "initials": "K A",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834724
}, - "created_at": "2026-03-20T18:45:10.768Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "4a74c8aa-908d-44ed-affa-b6d725f9f763",
- "id": 1060943867
}, - {
- "filename": "non.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015834728,
- "first_name": "Antonio",
- "last_name": "Fahey",
- "default_username": "charlena",
- "confirmed_at": "2026-03-20T18:45:11.177Z",
- "created_at": "2026-03-20T18:45:11.178Z",
- "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": "Antonio Fahey",
- "initials": "A F",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834728
}, - "created_at": "2026-03-20T18:45:12.494Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "bf80c0ea-ea67-4d33-a8cc-b153c404e9a7",
- "id": 1060943868
}, - {
- "filename": "nisi.jpg",
- "views_count": 0,
- "asset_downloads_count": 0,
- "share_links_count": 0,
- "user": {
- "id": 1015834732,
- "first_name": "Lorriane",
- "last_name": "Metz",
- "default_username": "arden_rippin",
- "confirmed_at": "2026-03-20T18:45:12.903Z",
- "created_at": "2026-03-20T18:45:12.903Z",
- "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": "Lorriane Metz",
- "initials": "L M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015834732
}, - "created_at": "2026-03-20T18:45:14.218Z",
- "asset_type": "Image",
- "file_size": null,
- "guid": "fe44b9fb-5b62-4aca-bbed-f3eb6e41911b",
- "id": 1060943869
}
]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": "58eeb733-cd8a-490f-a874-3bdf2147fcc9",
- "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": "0d29ca4a-efe5-4e73-9707-ce1f3d67889d",
- "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": {
- "879205437": {
- "name": "Custom Meta Field 168",
- "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": 1060943885,
- "filename": "fugiat.jpg",
- "file_size": null,
- "guid": "0de894a2-8891-4f8c-8191-517070cc559f",
- "short_guid": "0de894a2",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1018656556,
- "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": 865182741,
- "user_id": 1015834878,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:46:15.297Z",
- "updated_at": "2026-03-20T18:46:15.372Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656556/0447d0d6/0de894a2-8891-4f8c-8191-517070cc559f-fugiat.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:46:15.296Z",
- "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-03-20T06:46:15.296Z",
- "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": 1015834878,
- "first_name": "Shan",
- "last_name": "Quitzon",
- "created_at": "2026-03-20T18:46:09.942Z",
- "default_username": "damion",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shan Quitzon",
- "initials": "S Q",
- "username": null,
- "title": null,
- "user_id": 1015834878,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "ipsum-dolores136",
- "tags": [ ]
}, - {
- "id": 1060943884,
- "filename": "corporis.jpg",
- "file_size": null,
- "guid": "0642525e-218b-4e75-a4ac-040426ffdb20",
- "short_guid": "0642525e",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": true,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": true,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1018656556,
- "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": 865182740,
- "user_id": 1015834878,
- "aasm_state": "processed",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:46:14.027Z",
- "updated_at": "2026-03-20T18:46:14.097Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656556/8491a307/0642525e-218b-4e75-a4ac-040426ffdb20-corporis.jpg",
- "time_to_process": 0,
- "captured_at": "2026-03-19T18:46:14.025Z",
- "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-03-20T06:46:14.025Z",
- "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": 1015834878,
- "first_name": "Shan",
- "last_name": "Quitzon",
- "created_at": "2026-03-20T18:46:09.942Z",
- "default_username": "damion",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shan Quitzon",
- "initials": "S Q",
- "username": null,
- "title": null,
- "user_id": 1015834878,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "illo_pariatur135",
- "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": "6cafa1be-9a87-4661-9ad4-1118fe8cabf5",
- "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": 1073114190,
- "created_at": "2026-03-20T18:47:07.313Z",
- "path_names": [
- "Picasso145"
], - "path_slugs": [
- "temporibus-numquam145"
], - "slug": "temporibus-numquam145",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073114190,
- "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": 1018656570,
- "organization_slug": "satterfield-adams-and-reichel",
- "user": {
- "id": 1015835007,
- "first_name": "Melinda",
- "last_name": "Bogisich",
- "created_at": "2026-03-20T18:47:06.730Z",
- "default_username": "dewey",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Melinda Bogisich",
- "initials": "M B",
- "username": null,
- "title": null,
- "user_id": 1015835007,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Picasso145",
- "description": "Molestias omnis et. Voluptate rerum vitae. Et totam quo."
}
]object |
{- "collection": {
- "name": "Test Collection",
- "description": "string",
- "parent_id": 1073114301,
- "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": 1073114302,
- "created_at": "2026-03-20T18:47:20.010Z",
- "path_names": [
- "Michelangelo149",
- "Test Collection"
], - "path_slugs": [
- "qui_sit149",
- "test-collection"
], - "slug": "test-collection",
- "sandbox": false,
- "organizer": null,
- "type": "Collection",
- "has_children": false,
- "parent_id": 1073114301,
- "ancestor_ids": [
- 1073114301
], - "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 1073114302,
- "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": 1018656573,
- "organization_slug": "blick-llc",
- "user": {
- "id": 1015835029,
- "first_name": "Glen",
- "last_name": "Lehner",
- "created_at": "2026-03-20T18:47:15.993Z",
- "default_username": "hermankessler",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Glen Lehner",
- "initials": "G L",
- "username": null,
- "title": null,
- "user_id": 1015835029,
- "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": 1073114231,
- "created_at": "2026-03-20T18:47:11.905Z",
- "path_names": [
- "Dali147"
], - "path_slugs": [
- "vitae-veritatis147"
], - "slug": "vitae-veritatis147",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073114231,
- "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": 1018656571,
- "organization_slug": "schoen-llc",
- "user": {
- "id": 1015835018,
- "first_name": "Larraine",
- "last_name": "Casper",
- "created_at": "2026-03-20T18:47:11.322Z",
- "default_username": "terencekling",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Larraine Casper",
- "initials": "L C",
- "username": null,
- "title": null,
- "user_id": 1015835018,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Dali147",
- "description": "Soluta voluptates optio. Illo nisi ut. Rem ea maiores."
}, - {
- "id": 1073114225,
- "created_at": "2026-03-20T18:47:11.316Z",
- "path_names": [
- "Magritte146"
], - "path_slugs": [
- "occaecati-ut146"
], - "slug": "occaecati-ut146",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073114225,
- "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": 1018656571,
- "organization_slug": "schoen-llc",
- "user": {
- "id": 1015835017,
- "first_name": "Dorian",
- "last_name": "Koelpin",
- "created_at": "2026-03-20T18:47:10.727Z",
- "default_username": "rodrickrunolfsdottir",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Dorian Koelpin",
- "initials": "D K",
- "username": null,
- "title": null,
- "user_id": 1015835017,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Magritte146",
- "description": "Sed est eveniet. Quasi vel enim. Rerum quibusdam beatae."
}
]| id required | integer |
{- "id": 1073114266,
- "created_at": "2026-03-20T18:47:15.949Z",
- "path_names": [
- "Renoir148"
], - "path_slugs": [
- "tempora-excepturi148"
], - "slug": "tempora-excepturi148",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": 0,
- "asset_group_id": 1073114266,
- "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": 1018656572,
- "organization_slug": "conn-group",
- "user": {
- "id": 1015835028,
- "first_name": "Thuy",
- "last_name": "Stracke",
- "created_at": "2026-03-20T18:47:15.369Z",
- "default_username": "freida",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Thuy Stracke",
- "initials": "T S",
- "username": null,
- "title": null,
- "user_id": 1015835028,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Renoir148",
- "description": "Molestiae recusandae praesentium. Quia impedit dolorem. Facere qui voluptas.",
- "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": 1073114383,
- "created_at": "2026-03-20T18:47:29.946Z",
- "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": 1073114383,
- "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": 1018656575,
- "organization_slug": "mills-lubowitz-and-kohler",
- "user": {
- "id": 1015835062,
- "first_name": "Geraldine",
- "last_name": "Morissette",
- "created_at": "2026-03-20T18:47:29.364Z",
- "default_username": "tanna",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Geraldine Morissette",
- "initials": "G M",
- "username": null,
- "title": null,
- "user_id": 1015835062,
- "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": 1052042226,
- "asset_group_id": 1073114337,
- "asset_id": 1060943888,
- "user_id": 1015835039,
- "created_at": "2026-03-20T18:47:25.849Z",
- "updated_at": "2026-03-20T18:47:25.849Z",
- "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": 1073114453,
- "created_at": "2026-03-20T18:47:38.137Z",
- "path_names": [
- "Durer154"
], - "path_slugs": [
- "minus_nihil154"
], - "slug": "minus_nihil154",
- "sandbox": false,
- "organizer": false,
- "type": "Collection",
- "has_children": false,
- "parent_id": null,
- "ancestor_ids": [ ],
- "permission_ids": [ ],
- "visible_assets_count": null,
- "asset_group_id": 1073114453,
- "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": 1018656577,
- "organization_slug": "romaguera-kreiger-and-sauer",
- "user": {
- "id": 1015835082,
- "first_name": "Odell",
- "last_name": "Terry",
- "created_at": "2026-03-20T18:47:37.562Z",
- "default_username": "claretta",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Odell Terry",
- "initials": "O T",
- "username": null,
- "title": null,
- "user_id": 1015835082,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "can_update_assets": true,
- "name": "Durer154",
- "description": "Dolor in quasi. Fuga cum eveniet. Eum blanditiis laboriosam.",
- "commentable": true,
- "commentable_id": 1073114453,
- "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": 1073114488,
- "asset_group_id": 1073114488,
- "sub_type": null,
- "visible_assets_count": 0,
- "visible_assets_size": 0,
- "name": "Kahlo155"
}
]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": 31,
- "text": "This is a test comment",
- "html": "<p>This is a test comment</p>\n",
- "edited_at": null,
- "what_id": 1073114518,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-03-20T18:47:45.829Z",
- "updated_at": "2026-03-20T18:47:45.829Z",
- "user": {
- "id": 1015835093,
- "first_name": "Ria",
- "last_name": "Rodriguez",
- "default_username": "janean",
- "confirmed_at": "2026-03-20T18:47:42.260Z",
- "created_at": "2026-03-20T18:47:42.261Z",
- "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": "Ria Rodriguez",
- "initials": "R R",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835093,
- "username": "janean",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Klimt156",
- "id": 1073114518,
- "slug": "1073114518-porro_vitae156"
}
}
]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": 33,
- "text": "Great work on this lightbox!",
- "html": "<p>Great work on this lightbox!</p>\n",
- "edited_at": null,
- "what_id": 1073114548,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-03-20T18:47:49.449Z",
- "updated_at": "2026-03-20T18:47:49.449Z",
- "user": {
- "id": 1015835102,
- "first_name": "Evelynn",
- "last_name": "Wolff",
- "default_username": "ignaciodaugherty",
- "confirmed_at": "2026-03-20T18:47:45.859Z",
- "created_at": "2026-03-20T18:47:45.860Z",
- "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": "Evelynn Wolff",
- "initials": "E W",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835102,
- "username": "ignaciodaugherty",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Vincent157",
- "id": 1073114548,
- "slug": "1073114548-earum_consequatur157"
}
}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": 34,
- "text": "Updated comment text",
- "html": "<p>Updated comment text</p>\n",
- "edited_at": "2026-03-20T18:47:53.055Z",
- "what_id": 1073114578,
- "what_type": "AssetGroup",
- "mentioned_user_ids": "[]",
- "created_at": "2026-03-20T18:47:53.046Z",
- "updated_at": "2026-03-20T18:47:53.057Z",
- "user": {
- "id": 1015835111,
- "first_name": "Clifton",
- "last_name": "Keebler",
- "default_username": "racquel_shields",
- "confirmed_at": "2026-03-20T18:47:49.460Z",
- "created_at": "2026-03-20T18:47:49.461Z",
- "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": "Clifton Keebler",
- "initials": "C K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835111,
- "username": "racquel_shields",
- "notify_new_membership_requests": true
}, - "lightbox": {
- "name": "Joan Miro158",
- "id": 1073114578,
- "slug": "1073114578-aut-minima158"
}
}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": 1025862193,
- "name": "blanditiis",
- "text": "Earum cum soluta. Error qui sed. Debitis minus asperiores.",
- "featured": true,
- "slug": "et-voluptatum",
- "storage_folder_id": 1073114638,
- "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-03-20T18:48:00.195Z",
- "updated_at": "2026-03-20T18:48:00.195Z",
- "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": "1025862193-blanditiis",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114638,
- "created_at": "2026-03-20T18:48:00.188Z",
- "name": "Donatello160",
- "description": "Sit unde voluptate. Eos vitae quas. Reprehenderit quaerat ut.",
- "slug": "natus_ut160",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Donatello160"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "natus_ut160"
], - "asset_group_id": 1073114638,
- "has_workflow_steps": false,
- "contribution_id": 1025862192,
- "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": 1015835129,
- "first_name": "Danial",
- "last_name": "Lockman",
- "created_at": "2026-03-20T18:47:56.763Z",
- "default_username": "reanna",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Danial Lockman",
- "initials": "D L",
- "username": null,
- "title": null,
- "user_id": 1015835129,
- "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": 1025862320,
- "name": "New Upload Link",
- "text": null,
- "featured": true,
- "slug": "new-upload-link",
- "storage_folder_id": 1073114848,
- "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-03-20T18:48:24.657Z",
- "updated_at": "2026-03-20T18:48:24.657Z",
- "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": "1025862320-new-upload-link",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114848,
- "created_at": "2026-03-20T18:48:24.637Z",
- "name": "Diego Rivera167",
- "description": "Id sapiente quo. Aut et rerum. Voluptas at voluptas.",
- "slug": "officiis_doloribus167",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Diego Rivera167"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "officiis_doloribus167"
], - "asset_group_id": 1073114848,
- "has_workflow_steps": false,
- "contribution_id": 1025862318,
- "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": 1015835192,
- "first_name": "Brandee",
- "last_name": "Bruen",
- "created_at": "2026-03-20T18:48:21.111Z",
- "default_username": "rebecca",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Brandee Bruen",
- "initials": "B B",
- "username": null,
- "title": null,
- "user_id": 1015835192,
- "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": 1025862211,
- "name": "eos",
- "text": "Quasi cumque magnam. Sint fugiat excepturi. Iusto explicabo nobis.",
- "featured": true,
- "slug": "delectus_cupiditate",
- "storage_folder_id": 1073114668,
- "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-03-20T18:48:03.645Z",
- "updated_at": "2026-03-20T18:48:03.645Z",
- "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": "1025862211-eos",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114668,
- "created_at": "2026-03-20T18:48:03.637Z",
- "name": "Dali161",
- "description": "Cum id consequuntur. Dolores quia ipsum. Ipsam nostrum et.",
- "slug": "sit_non161",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Dali161"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "sit_non161"
], - "asset_group_id": 1073114668,
- "has_workflow_steps": false,
- "contribution_id": 1025862210,
- "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": 1015835138,
- "first_name": "Norman",
- "last_name": "Boehm",
- "created_at": "2026-03-20T18:48:00.227Z",
- "default_username": "caitlyndamore",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Norman Boehm",
- "initials": "N B",
- "username": null,
- "title": null,
- "user_id": 1015835138,
- "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": 1025862247,
- "name": "ipsam",
- "text": "Adipisci aut et. Ea velit unde. Facere totam ut.",
- "featured": true,
- "slug": "animi-excepturi",
- "storage_folder_id": 1073114728,
- "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-03-20T18:48:10.578Z",
- "updated_at": "2026-03-20T18:48:10.578Z",
- "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": "1025862247-ipsam",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114728,
- "created_at": "2026-03-20T18:48:10.570Z",
- "name": "Pollock163",
- "description": "Sunt ducimus officiis. Ut ipsa perspiciatis. Sit quod consequatur.",
- "slug": "quam_doloribus163",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Pollock163"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "quam_doloribus163"
], - "asset_group_id": 1073114728,
- "has_workflow_steps": false,
- "contribution_id": 1025862246,
- "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": 1015835156,
- "first_name": "Christy",
- "last_name": "Bernhard",
- "created_at": "2026-03-20T18:48:07.174Z",
- "default_username": "felipe_gleason",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Christy Bernhard",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 1015835156,
- "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": 1025862283,
- "name": "dolor",
- "text": "Fugiat voluptas excepturi. Repellat est amet. Non hic enim.",
- "featured": true,
- "slug": "autem-alias",
- "storage_folder_id": 1073114788,
- "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-03-20T18:48:17.587Z",
- "updated_at": "2026-03-20T18:48:17.587Z",
- "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": "1025862283-dolor",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114788,
- "created_at": "2026-03-20T18:48:17.579Z",
- "name": "Gauguin165",
- "description": "Consequatur recusandae veritatis. Earum dignissimos aspernatur. Qui quod vel.",
- "slug": "labore-optio165",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin165"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "labore-optio165"
], - "asset_group_id": 1073114788,
- "has_workflow_steps": false,
- "contribution_id": 1025862282,
- "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": 1015835174,
- "first_name": "Shena",
- "last_name": "Reinger",
- "created_at": "2026-03-20T18:48:14.074Z",
- "default_username": "pasqualeschaefer",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Shena Reinger",
- "initials": "S R",
- "username": null,
- "title": null,
- "user_id": 1015835174,
- "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": 1025862301,
- "name": "facere",
- "text": "Et animi assumenda. Deserunt dolor quisquam. Sapiente veritatis nemo.",
- "featured": true,
- "slug": "tenetur_error",
- "storage_folder_id": 1073114818,
- "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-03-20T18:48:21.085Z",
- "updated_at": "2026-03-20T18:48:21.085Z",
- "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": "1025862301-facere",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114818,
- "created_at": "2026-03-20T18:48:21.077Z",
- "name": "Gauguin166",
- "description": "Eius quia unde. Harum ea magnam. Nesciunt aut reprehenderit.",
- "slug": "et-sed166",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Gauguin166"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "et-sed166"
], - "asset_group_id": 1073114818,
- "has_workflow_steps": false,
- "contribution_id": 1025862300,
- "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": 1015835183,
- "first_name": "Jody",
- "last_name": "Pfeffer",
- "created_at": "2026-03-20T18:48:17.613Z",
- "default_username": "juanita",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jody Pfeffer",
- "initials": "J P",
- "username": null,
- "title": null,
- "user_id": 1015835183,
- "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": 1025862338,
- "name": "Updated Contribution Name",
- "text": "Delectus quod dignissimos. Et quod praesentium. Dignissimos dolorum quis.",
- "featured": true,
- "slug": "ut_est",
- "storage_folder_id": 1073114878,
- "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-03-20T18:48:28.047Z",
- "updated_at": "2026-03-20T18:48:28.057Z",
- "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": "1025862338-updated-contribution-name",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073114878,
- "created_at": "2026-03-20T18:48:28.040Z",
- "name": "Munch168",
- "description": "Qui aut error. Quibusdam porro ipsam. Non sequi quas.",
- "slug": "consequatur-modi168",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Munch168"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "consequatur-modi168"
], - "asset_group_id": 1073114878,
- "has_workflow_steps": false,
- "contribution_id": 1025862337,
- "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": 1015835201,
- "first_name": "Renate",
- "last_name": "Shields",
- "created_at": "2026-03-20T18:48:24.675Z",
- "default_username": "stefanquigley",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Renate Shields",
- "initials": "R S",
- "username": null,
- "title": null,
- "user_id": 1015835201,
- "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": 356730673,
- "user_id": 1015835273,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 25,
- "height": 316,
- "position": 0,
- "created_at": "2026-03-20T18:48:57.000Z",
- "updated_at": "2026-03-20T18:48:57.000Z",
- "closest_size": "small"
}
]Create a new crop preset for the organization.
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "id": 356730676,
- "organization_id": 1018656601,
- "user_id": 1015835291,
- "enabled": true,
- "name": "Social Media",
- "width": 1200,
- "height": 630,
- "position": 1,
- "created_at": "2026-03-20T18:49:04.284Z",
- "updated_at": "2026-03-20T18:49:04.284Z"
}Get details of a specific crop preset.
| id required | integer |
{- "id": 356730674,
- "user_id": 1015835282,
- "enabled": true,
- "name": "Faker::Camera",
- "width": 777,
- "height": 400,
- "position": 0,
- "created_at": "2026-03-20T18:49:00.648Z",
- "updated_at": "2026-03-20T18:49:00.648Z",
- "closest_size": "medium"
}Update a crop preset's settings.
| id required | integer |
object |
{- "crop_preset": {
- "name": "string",
- "width": 0,
- "height": 0
}
}{- "organization_id": 1018656602,
- "name": "Updated Preset Name",
- "id": 356730677,
- "user_id": 1015835300,
- "enabled": true,
- "width": 81,
- "height": 680,
- "position": 0,
- "created_at": "2026-03-20T18:49:07.806Z",
- "updated_at": "2026-03-20T18:49:07.813Z"
}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": 879205567,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 298",
- "description": null,
- "multi": false,
- "created_at": "2026-03-20T18:49:18.154Z",
- "updated_at": "2026-03-20T18:49:18.154Z",
- "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": 1015835333,
- "first_name": "Felipa",
- "last_name": "McCullough",
- "created_at": "2026-03-20T18:49:18.086Z",
- "default_username": "ericreichel",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Felipa McCullough",
- "initials": "F M",
- "username": null,
- "title": null,
- "user_id": 1015835333,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 879205568,
- "type": null,
- "free": true,
- "name": "Custom Meta Field 299",
- "description": null,
- "multi": false,
- "created_at": "2026-03-20T18:49:18.228Z",
- "updated_at": "2026-03-20T18:49:18.228Z",
- "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": 1015835334,
- "first_name": "Marcelino",
- "last_name": "Simonis",
- "created_at": "2026-03-20T18:49:18.159Z",
- "default_username": "veola",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcelino Simonis",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835334,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}, - {
- "id": 879205569,
- "type": null,
- "free": false,
- "name": "Custom Meta Field 300",
- "description": null,
- "multi": true,
- "created_at": "2026-03-20T18:49:18.301Z",
- "updated_at": "2026-03-20T18:49:18.301Z",
- "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": 1015835335,
- "first_name": "Isiah",
- "last_name": "Mraz",
- "created_at": "2026-03-20T18:49:18.233Z",
- "default_username": "barrett",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Isiah Mraz",
- "initials": "I M",
- "username": null,
- "title": null,
- "user_id": 1015835335,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [
- {
- "id": 944091497,
- "text": "Som Tam 205",
- "date": null,
- "color_label": null
}, - {
- "id": 944091498,
- "text": "Philadelphia Maki 206",
- "date": null,
- "color_label": null
}
]
}, - {
- "id": 879205570,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-03-20T18:49:18.310Z",
- "updated_at": "2026-03-20T18:49:18.310Z",
- "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": 1015835327,
- "first_name": "Bernie",
- "last_name": "Waelchi",
- "created_at": "2026-03-20T18:49:14.904Z",
- "default_username": "eugenio_berge",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bernie Waelchi",
- "initials": "B W",
- "username": null,
- "title": null,
- "user_id": 1015835327,
- "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": "none",
- "auto_run": true,
- "asset_types": [
- "string"
], - "minimum_role_level": "string",
- "custom_meta_values_attributes": [
- { }
]
}
}{- "id": 879205583,
- "type": null,
- "free": true,
- "name": "Project Code",
- "description": "Internal project identifier",
- "multi": false,
- "created_at": "2026-03-20T18:49:28.755Z",
- "updated_at": "2026-03-20T18:49:28.755Z",
- "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": 1015835354,
- "first_name": "Bronwyn",
- "last_name": "Lind",
- "created_at": "2026-03-20T18:49:25.295Z",
- "default_username": "sonny_becker",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Bronwyn Lind",
- "initials": "B L",
- "username": null,
- "title": null,
- "user_id": 1015835354,
- "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": 879205578,
- "type": null,
- "free": false,
- "name": "Category",
- "description": null,
- "multi": false,
- "created_at": "2026-03-20T18:49:25.277Z",
- "updated_at": "2026-03-20T18:49:25.277Z",
- "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": 1015835345,
- "first_name": "Babara",
- "last_name": "O'Hara",
- "created_at": "2026-03-20T18:49:21.815Z",
- "default_username": "betty",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Babara O'Hara",
- "initials": "B O",
- "username": null,
- "title": null,
- "user_id": 1015835345,
- "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": 879205592,
- "type": null,
- "free": false,
- "name": "Updated Category",
- "description": "Updated description",
- "multi": false,
- "created_at": "2026-03-20T18:49:35.754Z",
- "updated_at": "2026-03-20T18:49:35.767Z",
- "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": 1015835372,
- "first_name": "Burton",
- "last_name": "Runte",
- "created_at": "2026-03-20T18:49:32.313Z",
- "default_username": "jordon",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Burton Runte",
- "initials": "B R",
- "username": null,
- "title": null,
- "user_id": 1015835372,
- "lang": null,
- "notify_new_membership_requests": null
}, - "custom_meta_values_attributes": [ ]
}Export one or more custom meta field configurations as JSON for backup or importing into another organization.
| ids required | Array of integers Array of custom meta field IDs to export |
| name | string Field name |
| description | string Field description |
| settings | string All field settings |
| values | string Controlled vocabulary values |
[- {
- "name": "Category",
- "description": null,
- "owner_type": "Asset",
- "free": false,
- "multi": false,
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "destination": null,
- "auto_run": false,
- "enable_controlled_vocab_creation": false,
- "asset_types": [ ],
- "enabled": true,
- "notes": null,
- "minimum_role_level": null,
- "iptc_field": null,
- "exported_at": "2026-03-20T18:49:42Z",
- "version": 1,
- "custom_meta_values": [ ]
}
]Import custom meta field configuration(s) from a JSON file (previously exported).
| file required | string <binary> JSON file containing field configuration |
[- {
- "id": 879205605,
- "organization_id": 1018656613,
- "user_id": 1015835399,
- "name": "Imported Field",
- "description": "Imported from another org",
- "iptc_field": null,
- "ancestry": null,
- "number": 5,
- "position": 5,
- "free": true,
- "multi": false,
- "meta_import_id": null,
- "created_at": "2026-03-20T18:49:46.320Z",
- "updated_at": "2026-03-20T18:49:46.320Z",
- "owner_type": "Asset",
- "required": false,
- "value_type": "text",
- "enable_action_menu": false,
- "enable_ai": false,
- "model": null,
- "prompt": null,
- "source_data": null,
- "auto_run": false,
- "destination": null,
- "enable_controlled_vocab_creation": false,
- "asset_types": [ ],
- "enabled": true,
- "notes": null,
- "minimum_role_level": null,
- "custom_meta_values": [ ]
}
]Get custom meta fields configured for access requests (owner_type: AccessRequest).
[- {
- "id": 879205610,
- "type": null,
- "free": false,
- "name": "Request Purpose",
- "description": null,
- "multi": false,
- "created_at": "2026-03-20T18:49:50.796Z",
- "updated_at": "2026-03-20T18:49:50.796Z",
- "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": 1015835408,
- "first_name": "Roosevelt",
- "last_name": "Feil",
- "created_at": "2026-03-20T18:49:46.329Z",
- "default_username": "gretta",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Roosevelt Feil",
- "initials": "R F",
- "username": null,
- "title": null,
- "user_id": 1015835408,
- "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": "5a9bbb45c96dcb3a7def4cec6a7a486b",
- "filename": "gutmann-morissette-and-dare-mediagraph-download-#1046393432.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": 643326694,
- "organization_id": 1018656617,
- "user_id": 1015835456,
- "name": "All",
- "position": 1,
- "created_at": "2026-03-20T18:50:09.542Z",
- "updated_at": "2026-03-20T18:50:09.542Z",
- "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": 643326695,
- "organization_id": 1018656617,
- "user_id": 1015835451,
- "name": "et",
- "position": 2,
- "created_at": "2026-03-20T18:50:09.768Z",
- "updated_at": "2026-03-20T18:50:09.768Z",
- "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": 643326700,
- "organization_id": 1018656619,
- "user_id": 1015835469,
- "name": "My Saved Filters",
- "filters": null,
- "position": 3,
- "created_at": "2026-03-20T18:50:16.681Z",
- "updated_at": "2026-03-20T18:50:16.681Z"
}Get details of a specific filter group.
| id required | integer |
{- "id": 643326697,
- "organization_id": 1018656618,
- "user_id": 1015835460,
- "name": "eaque",
- "position": 2,
- "created_at": "2026-03-20T18:50:13.232Z",
- "updated_at": "2026-03-20T18:50:13.232Z",
- "filters": [ ]
}Update a filter group configuration.
| id required | integer |
object |
{- "filter_group": {
- "name": "string",
- "filter_order": [
- "string"
]
}
}{- "organization_id": 1018656620,
- "name": "Updated Filter Group",
- "id": 643326702,
- "user_id": 1015835478,
- "filters": [ ],
- "position": 2,
- "created_at": "2026-03-20T18:50:20.118Z",
- "updated_at": "2026-03-20T18:50:20.129Z"
}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": 382397900,
- "note": null,
- "created_at": "2026-03-20T18:50:34.131Z",
- "updated_at": "2026-03-20T18:50:34.131Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015835514,
- "name": "Geraldo Johnson",
- "avatar_url": null
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true
}
]Create a new invite. Multiple email addresses can be provided separated by commas or semicolons.
object |
| invites | string Array of created invites |
{- "invite": {
- "email": "string",
- "role_level": "admin",
- "note": "string",
- "user_group_ids": [
- 0
], - "asset_group_id": 0
}
}{- "invites": [
- {
- "id": 382397907,
- "user_id": 1015835568,
- "organization_id": 1018656630,
- "membership_id": null,
- "aasm_state": "pending",
- "token": "b7cc4b3885483ae023e0f0e0480732d2",
- "accepted_at": null,
- "created_at": "2026-03-20T18:50:55.246Z",
- "updated_at": "2026-03-20T18:50:55.246Z",
- "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": 382397901,
- "note": null,
- "created_at": "2026-03-20T18:50:37.676Z",
- "updated_at": "2026-03-20T18:50:37.676Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015835523,
- "name": "Tommye Collins",
- "avatar_url": null
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true
}Update an existing invite before it's accepted.
| id required | integer |
object |
{- "invite": {
- "role_level": "string",
- "note": "string",
- "user_group_ids": [
- 0
]
}
}{- "id": 382397908,
- "note": "Updated note",
- "created_at": "2026-03-20T18:50:58.735Z",
- "updated_at": "2026-03-20T18:50:58.786Z",
- "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": 382397902,
- "note": null,
- "created_at": "2026-03-20T18:50:41.162Z",
- "updated_at": "2026-03-20T18:50:41.162Z",
- "aasm_state": "pending",
- "role_level": "general",
- "role_level_name": "General",
- "existing_user_id": null,
- "user": {
- "id": 1015835532,
- "first_name": "Lenny",
- "last_name": "Vandervort",
- "default_username": "lorean",
- "confirmed_at": "2026-03-20T18:50:37.731Z",
- "created_at": "2026-03-20T18:50:37.732Z",
- "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": "Lenny Vandervort",
- "initials": "L V",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835532
}, - "user_groups_count": 0,
- "user_groups": [ ],
- "user_group_ids": [ ],
- "editable": true,
- "token": "6ce9f92bf1d39777d8f4199a8898acad",
- "still_valid": true,
- "organization": {
- "id": 1018656626,
- "title": "Langworth LLC",
- "domain": null,
- "slug": "langworth-llc",
- "created_at": "2026-03-20T18:50:37.802Z",
- "updated_at": "2026-03-20T18:50:40.849Z",
- "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": "bbc10152",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-04-19T18:50:40.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": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015835532,
- "first_name": "Lenny",
- "last_name": "Vandervort",
- "created_at": "2026-03-20T18:50:37.732Z",
- "default_username": "lorean",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lenny Vandervort",
- "initials": "L V",
- "username": null,
- "title": null,
- "user_id": 1015835532,
- "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": [ ],
- "can_use_cai": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_27",
- "stripe_subscription_id": "test_su_28",
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ]
}
}Check if an email address is available for invitation (not already invited or a member).
| email required | string Email address to check |
| ok | string True if email is available |
{- "ok": true
}Get the role levels that the current user can assign to invites.
| role_levels | string Array of assignable role levels |
[- "restricted",
- "general",
- "global_tagger",
- "global_library",
- "global_content",
- "admin"
]| user_id | integer (Optional) User ID other than Current User. Only available to admins. |
[- {
- "name": "My First Lightbox",
- "sub_type": "home",
- "description": null,
- "created_at": "2026-03-20T18:51:06.302Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116146,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116146,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116146,
- "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": 1018656634,
- "access_request_id": null,
- "user": {
- "id": 1015835604,
- "first_name": "Marco",
- "last_name": "Streich",
- "created_at": "2026-03-20T18:51:06.050Z",
- "default_username": "lou",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco Streich",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835604,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116146-1027402545-my-first-lightbox",
- "id": 1047338049,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "1047338049-1027402545-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-03-20T18:51:06.335Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073116149,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073116149,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073116149,
- "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": 1018656634,
- "access_request_id": null,
- "user": {
- "id": 1015835604,
- "first_name": "Marco",
- "last_name": "Streich",
- "created_at": "2026-03-20T18:51:06.050Z",
- "default_username": "lou",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco Streich",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835604,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116149-1027402545-shared-with-me",
- "id": 1047338050,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "Archive",
- "sub_type": "archive",
- "description": "\n Use this lightbox organizer to reduce clutter in the projects panel.\n Store Lightboxes and Projects that are completed or inactive here.\n ",
- "created_at": "2026-03-20T18:51:06.340Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073116150,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073116150,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073116150,
- "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": 1018656634,
- "access_request_id": null,
- "user": {
- "id": 1015835604,
- "first_name": "Marco",
- "last_name": "Streich",
- "created_at": "2026-03-20T18:51:06.050Z",
- "default_username": "lou",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco Streich",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835604,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116150-1027402545-archive",
- "id": 1047338051,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "Botticelli174",
- "sub_type": null,
- "description": "Odio voluptate numquam. Voluptatem sunt ut. Rem ipsum quasi.",
- "created_at": "2026-03-20T18:51:09.512Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116171,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116171,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116171,
- "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": 1018656634,
- "access_request_id": null,
- "user": {
- "id": 1015835604,
- "first_name": "Marco",
- "last_name": "Streich",
- "created_at": "2026-03-20T18:51:06.050Z",
- "default_username": "lou",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marco Streich",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835604,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116171-accusamus-sint174",
- "id": 1047338064,
- "path_names": [
- "Botticelli174"
], - "path_slugs": [
- "1047338064-accusamus-sint174"
], - "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-03-20T18:51:31.923Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116362,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116362,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116362,
- "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": 1018656640,
- "access_request_id": null,
- "user": {
- "id": 1015835658,
- "first_name": "Crista",
- "last_name": "Becker",
- "created_at": "2026-03-20T18:51:28.443Z",
- "default_username": "zackhackett",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Crista Becker",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 1015835658,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116362-my-new-lightbox",
- "id": 1047338163,
- "path_names": [
- "My New Lightbox"
], - "path_slugs": [
- "1047338163-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": [
- "1073116362-my-new-lightbox"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 1015835658,
- "first_name": "Crista",
- "last_name": "Becker",
- "created_at": "2026-03-20T18:51:28.443Z",
- "default_username": "zackhackett",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Crista Becker",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 1015835658,
- "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-03-20T18:51:10.005Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073116180,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073116180,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073116180,
- "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": 1018656635,
- "access_request_id": null,
- "user": {
- "id": 1015835613,
- "first_name": "Tenisha",
- "last_name": "Gibson",
- "created_at": "2026-03-20T18:51:09.733Z",
- "default_username": "kaye",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tenisha Gibson",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015835613,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116180-1027402550-archive",
- "id": 1047338067,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}, - {
- "name": "My First Lightbox",
- "sub_type": "home",
- "description": null,
- "created_at": "2026-03-20T18:51:09.966Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116176,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116176,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116176,
- "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": 1018656635,
- "access_request_id": null,
- "user": {
- "id": 1015835613,
- "first_name": "Tenisha",
- "last_name": "Gibson",
- "created_at": "2026-03-20T18:51:09.733Z",
- "default_username": "kaye",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tenisha Gibson",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015835613,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116176-1027402550-my-first-lightbox",
- "id": 1047338065,
- "path_names": [
- "My First Lightbox"
], - "path_slugs": [
- "1047338065-1027402550-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": "Pissarro175",
- "sub_type": null,
- "description": "Unde doloribus sit. Est modi minus. Nisi nostrum eos.",
- "created_at": "2026-03-20T18:51:13.173Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116201,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116201,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116201,
- "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": 1018656635,
- "access_request_id": null,
- "user": {
- "id": 1015835613,
- "first_name": "Tenisha",
- "last_name": "Gibson",
- "created_at": "2026-03-20T18:51:09.733Z",
- "default_username": "kaye",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tenisha Gibson",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015835613,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116201-quia-mollitia175",
- "id": 1047338080,
- "path_names": [
- "Pissarro175"
], - "path_slugs": [
- "1047338080-quia-mollitia175"
], - "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": "Renoir176",
- "sub_type": null,
- "description": "Culpa eos velit. Dicta hic nam. Sapiente minus dolor.",
- "created_at": "2026-03-20T18:51:13.336Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116202,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116202,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116202,
- "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": 1018656635,
- "access_request_id": null,
- "user": {
- "id": 1015835613,
- "first_name": "Tenisha",
- "last_name": "Gibson",
- "created_at": "2026-03-20T18:51:09.733Z",
- "default_username": "kaye",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tenisha Gibson",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015835613,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116202-aut-excepturi176",
- "id": 1047338081,
- "path_names": [
- "Renoir176"
], - "path_slugs": [
- "1047338081-aut-excepturi176"
], - "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-03-20T18:51:09.998Z",
- "organizer": true,
- "type": "Lightbox",
- "asset_group_id": 1073116179,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": false,
- "comments_count": 0,
- "commentable_id": 1073116179,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": false,
- "folder_root_id": 1073116179,
- "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": 1018656635,
- "access_request_id": null,
- "user": {
- "id": 1015835613,
- "first_name": "Tenisha",
- "last_name": "Gibson",
- "created_at": "2026-03-20T18:51:09.733Z",
- "default_username": "kaye",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tenisha Gibson",
- "initials": "T G",
- "username": null,
- "title": null,
- "user_id": 1015835613,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116179-1027402550-shared-with-me",
- "id": 1047338066,
- "path_names": [ ],
- "path_slugs": [ ],
- "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "archived": false,
- "has_uploadable_descendants": false,
- "editable": true,
- "can_update_assets": true,
- "has_children": false
}
]| id | integer The ID of your membership to this Lightbox, or ID of a Folder. |
| sub_type | string Value: "folder" Set to |
{- "name": "Dali187",
- "sub_type": null,
- "description": "Quas odit consectetur. Aliquam accusantium labore. Rerum voluptas corrupti.",
- "created_at": "2026-03-20T18:51:24.622Z",
- "organizer": false,
- "type": "Lightbox",
- "asset_group_id": 1073116300,
- "has_workflow_steps": false,
- "enable_contribution": false,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073116300,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073116300,
- "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": 1018656638,
- "access_request_id": null,
- "user": {
- "id": 1015835640,
- "first_name": "Carrol",
- "last_name": "Feil",
- "created_at": "2026-03-20T18:51:21.166Z",
- "default_username": "arnulfoschuppe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carrol Feil",
- "initials": "C F",
- "username": null,
- "title": null,
- "user_id": 1015835640,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116300-similique-laudantium187",
- "id": 1047338131,
- "path_names": [
- "Dali187"
], - "path_slugs": [
- "1047338131-similique-laudantium187"
], - "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": [
- "1073116300-similique-laudantium187"
], - "workflow_steps": [ ],
- "users": [
- {
- "role": "viewer",
- "id": 1015835640,
- "first_name": "Carrol",
- "last_name": "Feil",
- "created_at": "2026-03-20T18:51:21.166Z",
- "default_username": "arnulfoschuppe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carrol Feil",
- "initials": "C F",
- "username": null,
- "title": null,
- "user_id": 1015835640,
- "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": 1047338179,
- "name": "Updated Lightbox Name",
- "sub_type": null,
- "description": "Dolores autem inventore. Sit veritatis nulla. Distinctio magni culpa.",
- "created_at": "2026-03-20T18:51:35.647Z",
- "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": 1073116392,
- "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": 1015835667,
- "first_name": "Versie",
- "last_name": "Herman",
- "created_at": "2026-03-20T18:51:32.147Z",
- "default_username": "mohammad_rice",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Versie Herman",
- "initials": "V H",
- "username": null,
- "title": null,
- "user_id": 1015835667,
- "lang": null,
- "notify_new_membership_requests": null
}, - "slug": "1073116392-updated-lightbox-name",
- "asset_group_memberships_attributes": [
- {
- "id": 1047338179,
- "role": "viewer",
- "assets_count": 0,
- "user": {
- "id": 1015835667,
- "first_name": "Versie",
- "last_name": "Herman",
- "created_at": "2026-03-20T18:51:32.147Z",
- "default_username": "mohammad_rice",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Versie Herman",
- "initials": "V H",
- "username": null,
- "title": null,
- "user_id": 1015835667,
- "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": 1027402603,
- "created_at": "2026-03-20T18:51:49.418Z",
- "updated_at": "2026-03-20T18:51:49.418Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835706,
- "first_name": "Jerilyn",
- "last_name": "Hauck",
- "default_username": "herb_bartell",
- "confirmed_at": "2026-03-20T18:51:49.348Z",
- "created_at": "2026-03-20T18:51:49.349Z",
- "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": "Jerilyn Hauck",
- "initials": "J H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835706,
- "username": "herb_bartell",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "J H",
- "tester": false,
- "username": "herb_bartell",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Jerilyn Hauck",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402602,
- "created_at": "2026-03-20T18:51:48.833Z",
- "updated_at": "2026-03-20T18:51:48.833Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835705,
- "first_name": "Adolph",
- "last_name": "McKenzie",
- "default_username": "meghann",
- "confirmed_at": "2026-03-20T18:51:48.763Z",
- "created_at": "2026-03-20T18:51:48.764Z",
- "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": "Adolph McKenzie",
- "initials": "A M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835705,
- "username": "meghann",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "A M",
- "tester": false,
- "username": "meghann",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Adolph McKenzie",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402601,
- "created_at": "2026-03-20T18:51:48.233Z",
- "updated_at": "2026-03-20T18:51:48.233Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835704,
- "first_name": "Imelda",
- "last_name": "Feeney",
- "default_username": "maricela_schimmel",
- "confirmed_at": "2026-03-20T18:51:48.165Z",
- "created_at": "2026-03-20T18:51:48.166Z",
- "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": "Imelda Feeney",
- "initials": "I F",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835704,
- "username": "maricela_schimmel",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "I F",
- "tester": false,
- "username": "maricela_schimmel",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Imelda Feeney",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402600,
- "created_at": "2026-03-20T18:51:47.284Z",
- "updated_at": "2026-03-20T18:51:47.284Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835699,
- "first_name": "Larkin, Tillman and Hessel Test",
- "last_name": "Global Tagger",
- "default_username": null,
- "confirmed_at": "2026-03-20T18:51:47.213Z",
- "created_at": "2026-03-20T18:51:47.215Z",
- "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": "Larkin, Tillman and Hessel Test Global Tagger",
- "initials": "L G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835699,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_tagger",
- "role_level_name": "Global Tagger",
- "initials": "L G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Larkin, Tillman and Hessel Test Global Tagger",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402599,
- "created_at": "2026-03-20T18:51:46.696Z",
- "updated_at": "2026-03-20T18:51:46.696Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835698,
- "first_name": "Larkin, Tillman and Hessel Test",
- "last_name": "Global Library Manager",
- "default_username": null,
- "confirmed_at": "2026-03-20T18:51:46.626Z",
- "created_at": "2026-03-20T18:51:46.628Z",
- "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": "Larkin, Tillman and Hessel Test Global Library Manager",
- "initials": "L G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835698,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_library",
- "role_level_name": "Global Library",
- "initials": "L G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Larkin, Tillman and Hessel Test Global Library Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402598,
- "created_at": "2026-03-20T18:51:46.104Z",
- "updated_at": "2026-03-20T18:51:46.104Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835697,
- "first_name": "Larkin, Tillman and Hessel Test",
- "last_name": "Global Content Manager",
- "default_username": null,
- "confirmed_at": "2026-03-20T18:51:46.034Z",
- "created_at": "2026-03-20T18:51:46.036Z",
- "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": "Larkin, Tillman and Hessel Test Global Content Manager",
- "initials": "L G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835697,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "global_content",
- "role_level_name": "Global Content",
- "initials": "L G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Larkin, Tillman and Hessel Test Global Content Manager",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402597,
- "created_at": "2026-03-20T18:51:45.515Z",
- "updated_at": "2026-03-20T18:51:45.515Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835696,
- "first_name": "Larkin, Tillman and Hessel Test",
- "last_name": "General Member",
- "default_username": null,
- "confirmed_at": "2026-03-20T18:51:45.445Z",
- "created_at": "2026-03-20T18:51:45.447Z",
- "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": "Larkin, Tillman and Hessel Test General Member",
- "initials": "L G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835696,
- "username": null,
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "L G",
- "tester": true,
- "username": null,
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Larkin, Tillman and Hessel Test General Member",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}, - {
- "id": 1027402596,
- "created_at": "2026-03-20T18:51:44.924Z",
- "updated_at": "2026-03-20T18:51:44.924Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835695,
- "first_name": "Jacques",
- "last_name": "Little",
- "default_username": "kelly",
- "confirmed_at": "2026-03-20T18:51:44.689Z",
- "created_at": "2026-03-20T18:51:44.690Z",
- "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": "Jacques Little",
- "initials": "J L",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835695,
- "username": "kelly",
- "notify_new_membership_requests": true
}, - "role_level": "admin",
- "role_level_name": "Admin",
- "initials": "J L",
- "tester": false,
- "username": "kelly",
- "title": null,
- "last_login_at": null,
- "is_owner": true,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Jacques Little",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": false
}
]| id required | integer |
{- "id": 1027402609,
- "created_at": "2026-03-20T18:51:53.492Z",
- "updated_at": "2026-03-20T18:51:53.492Z",
- "aasm_state": "active",
- "user_group_ids": [ ],
- "user": {
- "id": 1015835716,
- "first_name": "Dusty",
- "last_name": "Dietrich",
- "default_username": "maryalicegislason",
- "confirmed_at": "2026-03-20T18:51:53.422Z",
- "created_at": "2026-03-20T18:51:53.423Z",
- "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": "Dusty Dietrich",
- "initials": "D D",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835716,
- "username": "maryalicegislason",
- "notify_new_membership_requests": true
}, - "role_level": "general",
- "role_level_name": "General",
- "initials": "D D",
- "tester": false,
- "username": "maryalicegislason",
- "title": null,
- "last_login_at": null,
- "is_owner": false,
- "otp_required_for_login": null,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Dusty Dietrich",
- "avatar_url": null,
- "user_groups_count": 0,
- "user_groups": [ ],
- "switchable": true
}| id required | integer |
object |
{- "membership": {
- "role_level": "global_library"
}
}{- "organization_id": 1018656646,
- "id": 1027402615,
- "user_id": 1015835726,
- "invite_id": null,
- "aasm_state": "active",
- "created_at": "2026-03-20T18:51:57.549Z",
- "updated_at": "2026-03-20T18:51:58.078Z",
- "role_level": "global_library",
- "username": "tatianacormier",
- "title": null,
- "last_login_at": null,
- "box_token": null,
- "box_token_set_at": null,
- "single_use_token": null,
- "box_user": null,
- "grid_color": null,
- "dropbox_token": null,
- "dropbox_token_set_at": null,
- "dropbox_user": null,
- "google_drive_refresh_token": null,
- "google_drive_access_token": null,
- "google_drive_connected_at": null,
- "google_drive_account": null,
- "frame_token": null,
- "frame_token_set_at": null,
- "frame_account": null,
- "lightroom_token": null,
- "lightroom_token_set_at": null,
- "lightroom_account": null,
- "lightroom_catalog_id": null,
- "created_via": null,
- "rekognition_user_id": null,
- "face_tag_id": null,
- "notify_new_membership_requests": true,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Emory Bashirian",
- "initials": "E B",
- "avatar_url": null,
- "user_group_ids": [ ]
}| id required | integer |
| status | string Enum: "active" "deactivated" Status |
{- "organization_id": 1018656647,
- "id": 1027402621,
- "user_id": 1015835736,
- "invite_id": null,
- "aasm_state": "deactivated",
- "created_at": "2026-03-20T18:52:01.594Z",
- "updated_at": "2026-03-20T18:52:02.123Z",
- "role_level": "general",
- "username": "judiereilly",
- "title": null,
- "last_login_at": null,
- "box_token": null,
- "box_token_set_at": null,
- "single_use_token": null,
- "box_user": null,
- "grid_color": null,
- "dropbox_token": null,
- "dropbox_token_set_at": null,
- "dropbox_user": null,
- "google_drive_refresh_token": null,
- "google_drive_access_token": null,
- "google_drive_connected_at": null,
- "google_drive_account": null,
- "frame_token": null,
- "frame_token_set_at": null,
- "frame_account": null,
- "lightroom_token": null,
- "lightroom_token_set_at": null,
- "lightroom_account": null,
- "lightroom_catalog_id": null,
- "created_via": null,
- "rekognition_user_id": null,
- "face_tag_id": null,
- "notify_new_membership_requests": true,
- "can_create_grants": false,
- "can_use_cai": false,
- "name": "Malcolm Roob",
- "initials": "M R",
- "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": 468021874,
- "user": {
- "id": 1015835737,
- "first_name": "Kyoko",
- "last_name": "Cassin",
- "default_username": "rusty",
- "confirmed_at": "2026-03-20T18:52:02.206Z",
- "created_at": "2026-03-20T18:52:02.207Z",
- "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": "Kyoko Cassin",
- "initials": "K C",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835737
}, - "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-03-20T18:52:05.689Z",
- "updated_at": "2026-03-20T18:52:05.736Z",
- "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": 468021875,
- "user": {
- "id": 1015835746,
- "first_name": "Estella",
- "last_name": "Ernser",
- "default_username": "kimbra",
- "confirmed_at": "2026-03-20T18:52:05.791Z",
- "created_at": "2026-03-20T18:52:05.792Z",
- "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": "Estella Ernser",
- "initials": "E E",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835746
}, - "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-03-20T18:52:09.240Z",
- "updated_at": "2026-03-20T18:52:09.279Z",
- "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": 468021876,
- "user": {
- "id": 1015835755,
- "first_name": "Jacquiline",
- "last_name": "Schmidt",
- "default_username": "lashandabailey",
- "confirmed_at": "2026-03-20T18:52:09.330Z",
- "created_at": "2026-03-20T18:52:09.331Z",
- "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": "Jacquiline Schmidt",
- "initials": "J S",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835755
}, - "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-03-20T18:52:12.779Z",
- "updated_at": "2026-03-20T18:52:12.865Z",
- "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": 468021877,
- "user": {
- "id": 1015835764,
- "first_name": "Nicki",
- "last_name": "Gibson",
- "default_username": "dionnahilpert",
- "confirmed_at": "2026-03-20T18:52:12.873Z",
- "created_at": "2026-03-20T18:52:12.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": "Nicki Gibson",
- "initials": "N G",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015835764
}, - "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-03-20T18:52:16.320Z",
- "updated_at": "2026-03-20T18:52:16.403Z",
- "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": 1018656657,
- "title": "Lind, Littel and Brekke",
- "domain": null,
- "slug": "lind-littel-and-brekke",
- "created_at": "2026-03-20T18:52:34.364Z",
- "updated_at": "2026-03-20T18:52:37.452Z",
- "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": "44dc1765",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-04-19T18:52:37.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": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015835818,
- "first_name": "Hobert",
- "last_name": "Wolf",
- "created_at": "2026-03-20T18:52:34.292Z",
- "default_username": "tamala",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Hobert Wolf",
- "initials": "H W",
- "username": null,
- "title": null,
- "user_id": 1015835818,
- "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": [ ],
- "can_use_cai": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_19",
- "stripe_subscription_id": "test_su_20",
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ],
- "has_public_uploads": false,
- "has_custom_meta_fields": true,
- "enable_download_statement": false,
- "header_background_color": "#000000",
- "header_text_color": "#ffffff",
- "header_highlight_color": "#1890ff",
- "enable_access_requests": false,
- "quick_info_settings": [
- "stats",
- "creator",
- "description",
- "usage_rights",
- "links",
- "optimization_requests",
- "restricted_access",
- "keywords",
- "gps"
], - "sidebar_items": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "banner_assets": [ ]
}, - "abilities": [
- {
- "action": [
- "manage"
], - "subject": [
- "all"
], - "conditions": {
- "organization_id": 1018656657
}
}, - {
- "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": 1018656657
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "TaxonomyImport"
], - "conditions": {
- "taxonomy": {
- "organization_id": 1018656657
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "Tagging"
], - "conditions": {
- "tag": {
- "organization_id": 1018656657
}
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Organization"
], - "conditions": {
- "id": 1018656657
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "CropPreset"
], - "conditions": {
- "organization_id": 1018656657
}
}, - {
- "action": [
- "manage"
], - "subject": [
- "Content"
], - "inverted": true
}, - {
- "action": [
- "manage"
], - "subject": [
- "User"
], - "inverted": true
}, - {
- "action": [
- "switch_to_user"
], - "subject": [
- "User"
]
}
]
}| id | integer Example: id=1018656658 The ID of the Organization |
{- "id": 1018656658,
- "title": "Trantow, Schmidt and Wintheiser",
- "domain": null,
- "slug": "trantow-schmidt-and-wintheiser",
- "created_at": "2026-03-20T18:52:37.857Z",
- "updated_at": "2026-03-20T18:52:40.916Z",
- "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": "3fc7c7a7",
- "plan_has_sso": true,
- "plan_has_group_content_managers": true,
- "plan_has_multiple_tag_trees": true,
- "free": false,
- "trial_ends_at": "2026-04-19T18:52:40.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": [ ],
- "member_cai_ids": [ ],
- "user": {
- "id": 1015835827,
- "first_name": "Darlene",
- "last_name": "Marks",
- "created_at": "2026-03-20T18:52:37.785Z",
- "default_username": "mack",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Darlene Marks",
- "initials": "D M",
- "username": null,
- "title": null,
- "user_id": 1015835827,
- "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": [ ],
- "can_use_cai": false,
- "stripe_details": null,
- "billing_email": null,
- "stripe_coupon": null,
- "stripe_customer_id": "test_cus_23",
- "stripe_subscription_id": "test_su_24",
- "members_with_grant_permission": [ ],
- "members_with_cai_permission": [ ],
- "has_public_uploads": false,
- "has_custom_meta_fields": true,
- "enable_download_statement": false,
- "header_background_color": "#000000",
- "header_text_color": "#ffffff",
- "header_highlight_color": "#1890ff",
- "enable_access_requests": false,
- "quick_info_settings": [
- "stats",
- "creator",
- "description",
- "usage_rights",
- "links",
- "optimization_requests",
- "restricted_access",
- "keywords",
- "gps"
], - "sidebar_items": [
- {
- "name": "taxonomies",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "date_created",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "events",
- "admin": true,
- "public": true,
- "general": true
}, - {
- "name": "filters",
- "admin": true,
- "public": true,
- "general": true
}
], - "banner_assets": [ ]
}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": 1066727979,
- "user_group_id": 1053907104,
- "asset_group_id": null,
- "user_id": 1015835836,
- "name": "Stroman-Feil",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-03-20T18:52:44.822Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053907104,
- "name": "Marketing and Advertising",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073116953,
- "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-03-20T18:52:44.798Z",
- "updated_at": "2026-03-20T18:52:44.798Z",
- "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": 1066727979,
- "organization_id": 1018656659,
- "user_group_id": 1053907104,
- "asset_group_id": null,
- "user_id": 1015835836,
- "name": "Stroman-Feil",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-03-20T18:52:44.822Z",
- "updated_at": "2026-03-20T18:52:44.822Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015835836,
- "first_name": "Keith",
- "last_name": "Connelly",
- "created_at": "2026-03-20T18:52:41.317Z",
- "default_username": "lona_mayert",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Keith Connelly",
- "initials": "K C",
- "username": null,
- "title": null,
- "user_id": 1015835836,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073116953,
- "created_at": "2026-03-20T18:52:44.811Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Marketing and Advertising Storage",
- "Group Uploads"
], - "parent_id": 1073116952,
- "ancestor_ids": [
- 1073116952
], - "visible_assets_count": null,
- "path_slugs": [
- "marketing-and-advertising-storage",
- "group-uploads"
], - "asset_group_id": 1073116953,
- "has_workflow_steps": false,
- "contribution_id": 1025863482,
- "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": 1015835836,
- "first_name": "Keith",
- "last_name": "Connelly",
- "created_at": "2026-03-20T18:52:41.317Z",
- "default_username": "lona_mayert",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Keith Connelly",
- "initials": "K C",
- "username": null,
- "title": null,
- "user_id": 1015835836,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907104,
- "name": "Marketing and Advertising",
- "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": 1066728006,
- "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-03-20T18:52:51.893Z",
- "inherited": null,
- "federated_organization_id": null
}Get details of a specific permission.
| id required | integer |
{- "id": 1066727992,
- "user_group_id": 1053907107,
- "asset_group_id": null,
- "user_id": 1015835845,
- "name": "Gorczany-Keebler",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-03-20T18:52:48.353Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053907107,
- "name": "Entertainment",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073116984,
- "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-03-20T18:52:48.331Z",
- "updated_at": "2026-03-20T18:52:48.331Z",
- "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": 1066727992,
- "organization_id": 1018656660,
- "user_group_id": 1053907107,
- "asset_group_id": null,
- "user_id": 1015835845,
- "name": "Gorczany-Keebler",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "download": false,
- "enabled": true,
- "auto_permission": null,
- "position": null,
- "created_at": "2026-03-20T18:52:48.353Z",
- "updated_at": "2026-03-20T18:52:48.353Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015835845,
- "first_name": "Marcus",
- "last_name": "Schneider",
- "created_at": "2026-03-20T18:52:44.854Z",
- "default_username": "shauntaoberbrunner",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcus Schneider",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835845,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073116984,
- "created_at": "2026-03-20T18:52:48.343Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Entertainment Storage",
- "Group Uploads"
], - "parent_id": 1073116983,
- "ancestor_ids": [
- 1073116983
], - "visible_assets_count": null,
- "path_slugs": [
- "entertainment-storage",
- "group-uploads"
], - "asset_group_id": 1073116984,
- "has_workflow_steps": false,
- "contribution_id": 1025863499,
- "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": 1015835845,
- "first_name": "Marcus",
- "last_name": "Schneider",
- "created_at": "2026-03-20T18:52:44.854Z",
- "default_username": "shauntaoberbrunner",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Marcus Schneider",
- "initials": "M S",
- "username": null,
- "title": null,
- "user_id": 1015835845,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907107,
- "name": "Entertainment",
- "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": 1066728019,
- "user_group_id": 1053907113,
- "asset_group_id": null,
- "user_id": 1015835863,
- "name": "Updated Permission Name",
- "image": "small",
- "video": "small",
- "audio": "listen",
- "other": "view",
- "watermark": false,
- "enabled": true,
- "auto_permission": null,
- "created_at": "2026-03-20T18:52:55.390Z",
- "inherited": null,
- "federated_organization_id": null,
- "user_group": {
- "id": 1053907113,
- "name": "Sports",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073117046,
- "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-03-20T18:52:55.367Z",
- "updated_at": "2026-03-20T18:52:55.367Z",
- "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": 1066728019,
- "organization_id": 1018656662,
- "user_group_id": 1053907113,
- "asset_group_id": null,
- "user_id": 1015835863,
- "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-03-20T18:52:55.390Z",
- "updated_at": "2026-03-20T18:52:55.399Z",
- "preset": false,
- "federation_sharing": true,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015835863,
- "first_name": "Olen",
- "last_name": "DuBuque",
- "created_at": "2026-03-20T18:52:51.900Z",
- "default_username": "ute",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Olen DuBuque",
- "initials": "O D",
- "username": null,
- "title": null,
- "user_id": 1015835863,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073117046,
- "created_at": "2026-03-20T18:52:55.380Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Sports Storage",
- "Group Uploads"
], - "parent_id": 1073117045,
- "ancestor_ids": [
- 1073117045
], - "visible_assets_count": null,
- "path_slugs": [
- "sports-storage",
- "group-uploads"
], - "asset_group_id": 1073117046,
- "has_workflow_steps": false,
- "contribution_id": 1025863533,
- "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": 1015835863,
- "first_name": "Olen",
- "last_name": "DuBuque",
- "created_at": "2026-03-20T18:52:51.900Z",
- "default_username": "ute",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Olen DuBuque",
- "initials": "O D",
- "username": null,
- "title": null,
- "user_id": 1015835863,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907113,
- "name": "Sports",
- "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": 909710280,
- "scopes": null,
- "note": null,
- "created_at": "2026-03-20T18:53:02.459Z",
- "updated_at": "2026-03-20T18:53:02.459Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null
}, - {
- "id": 909710279,
- "scopes": null,
- "note": null,
- "created_at": "2026-03-20T18:53:02.458Z",
- "updated_at": "2026-03-20T18:53:02.458Z",
- "last_used_at": "2026-03-20T18:53:02.464Z",
- "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": 909710285,
- "scopes": null,
- "note": null,
- "created_at": "2026-03-20T18:53:09.421Z",
- "updated_at": "2026-03-20T18:53:09.421Z",
- "last_used_at": null,
- "source": null,
- "organization": null,
- "asset_group_id": null,
- "token": "7d8e3dd17f06747fac16d200fa214528"
}Get details of a specific personal access token.
| id required | integer |
{- "id": 909710282,
- "scopes": null,
- "note": null,
- "created_at": "2026-03-20T18:53:05.961Z",
- "updated_at": "2026-03-20T18:53:05.961Z",
- "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": 957301714,
- "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-03-20T18:53:16.462Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301713,
- "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-03-20T18:53:13.179Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301712,
- "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-03-20T18:53:13.177Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301711,
- "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-03-20T18:53:13.176Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301710,
- "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-03-20T18:53:13.174Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301709,
- "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-03-20T18:53:13.173Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301708,
- "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-03-20T18:53:13.171Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301707,
- "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-03-20T18:53:13.169Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}, - {
- "id": 957301706,
- "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-03-20T18:53:13.167Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835917,
- "name": "Susannah Kling",
- "avatar_url": null
}, - "assets_count": 0,
- "editable": true
}
]Create a new rights package for the organization.
object |
{- "rights_package": {
- "name": "string",
- "rights_class": "owned",
- "enabled": true
}
}{- "id": 957301733,
- "organization_id": 1018656670,
- "user_id": 1015835935,
- "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-03-20T18:53:23.437Z",
- "updated_at": "2026-03-20T18:53:23.437Z",
- "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": 957301723,
- "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-03-20T18:53:19.951Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835926,
- "name": "Emeline Bernier",
- "avatar_url": null
}, - "editable": true
}Update a rights package's settings.
| id required | integer |
object |
{- "rights_package": {
- "name": "string",
- "rights_class": "string",
- "enabled": true
}
}{- "organization_id": 1018656671,
- "enabled": false,
- "id": 957301742,
- "user_id": 1015835944,
- "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-03-20T18:53:26.882Z",
- "updated_at": "2026-03-20T18:53:26.892Z",
- "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": 957301751,
- "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-03-20T18:53:30.344Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015835953,
- "name": "Parthenia Daniel",
- "avatar_url": null
}, - "editable": true
}
]Search Queries allow users to save and reuse complex search filters.
Saved searches can be quickly accessed and shared.
The sql field uses Elasticsearch SQL syntax for the WHERE clause.
Returns all saved search queries for the current user in the current organization.
| id | string Search Query ID |
| name | string Search name |
| description | string Search description |
| sql | string SQL WHERE clause (Elasticsearch SQL syntax) |
| json_logic | string JSON Logic representation of the query |
| user_id | string Owner user ID |
| created_at | string Creation timestamp |
| updated_at | string Last update timestamp |
[- {
- "id": 31,
- "user_id": 1015835971,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-03-20T18:53:37.387Z",
- "updated_at": "2026-03-20T18:53:37.387Z"
}
]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": 34,
- "user_id": 1015835989,
- "json_logic": null,
- "name": "New Saved Search",
- "description": "Find pending assets",
- "sql": "aasm_state = 'pending'",
- "created_at": "2026-03-20T18:53:44.386Z",
- "updated_at": "2026-03-20T18:53:44.386Z"
}Get details of a specific saved search query.
| id required | integer |
{- "id": 32,
- "user_id": 1015835980,
- "json_logic": null,
- "name": "My Saved Search",
- "description": "Find all processed images",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-03-20T18:53:40.889Z",
- "updated_at": "2026-03-20T18:53:40.889Z"
}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": 35,
- "user_id": 1015835998,
- "json_logic": null,
- "name": "Updated Search Name",
- "description": "Updated description",
- "sql": "aasm_state = 'processed'",
- "created_at": "2026-03-20T18:53:47.852Z",
- "updated_at": "2026-03-20T18:53:47.868Z"
}| publish_user_id | integer Filter by Publish User ID; for Lightroom Publish Connections |
| publish_type | string Value: "lightroom" Filter by Publish Type |
[- {
- "id": 1073117834,
- "created_at": "2026-03-20T18:54:31.823Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 1073117833,
- "ancestor_ids": [
- 1073117833
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 1073117834,
- "has_workflow_steps": false,
- "contribution_id": 1025863971,
- "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": 1015836118,
- "first_name": "Calvin",
- "last_name": "Hartmann",
- "created_at": "2026-03-20T18:54:31.667Z",
- "default_username": "leighann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Hartmann",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015836118,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117835,
- "created_at": "2026-03-20T18:54:31.837Z",
- "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": 1073117835,
- "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": 1015836118,
- "first_name": "Calvin",
- "last_name": "Hartmann",
- "created_at": "2026-03-20T18:54:31.667Z",
- "default_username": "leighann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Hartmann",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015836118,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117838,
- "created_at": "2026-03-20T18:54:31.903Z",
- "description": null,
- "slug": "daron-tremblay-lehner-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "daron-tremblay-lehner-io"
], - "asset_group_id": 1073117838,
- "has_workflow_steps": false,
- "contribution_id": 1025863973,
- "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": 1015836118,
- "first_name": "Calvin",
- "last_name": "Hartmann",
- "created_at": "2026-03-20T18:54:31.667Z",
- "default_username": "leighann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Hartmann",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015836118,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117839,
- "created_at": "2026-03-20T18:54:31.917Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117838,
- "ancestor_ids": [
- 1073117835,
- 1073117838
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "daron-tremblay-lehner-io",
- "my-first-lightbox"
], - "asset_group_id": 1073117839,
- "has_workflow_steps": false,
- "contribution_id": 1025863974,
- "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": 1015836118,
- "first_name": "Calvin",
- "last_name": "Hartmann",
- "created_at": "2026-03-20T18:54:31.667Z",
- "default_username": "leighann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Hartmann",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015836118,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117833,
- "created_at": "2026-03-20T18:54:31.814Z",
- "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": 1073117833,
- "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": 1015836118,
- "first_name": "Calvin",
- "last_name": "Hartmann",
- "created_at": "2026-03-20T18:54:31.667Z",
- "default_username": "leighann",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Calvin Hartmann",
- "initials": "C H",
- "username": null,
- "title": null,
- "user_id": 1015836118,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117843,
- "created_at": "2026-03-20T18:54:32.498Z",
- "description": null,
- "slug": "tester-9097d02e-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-9097d02e-mediagraph-io"
], - "asset_group_id": 1073117843,
- "has_workflow_steps": false,
- "contribution_id": 1025863976,
- "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": 1015836119,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "General Member",
- "created_at": "2026-03-20T18:54:32.415Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test General Member",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836119,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117844,
- "created_at": "2026-03-20T18:54:32.512Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-3",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117843,
- "ancestor_ids": [
- 1073117835,
- 1073117843
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-9097d02e-mediagraph-io",
- "my-first-lightbox-3"
], - "asset_group_id": 1073117844,
- "has_workflow_steps": false,
- "contribution_id": 1025863977,
- "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": 1015836119,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "General Member",
- "created_at": "2026-03-20T18:54:32.415Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test General Member",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836119,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117848,
- "created_at": "2026-03-20T18:54:33.074Z",
- "description": null,
- "slug": "tester-10d88ddb-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-10d88ddb-mediagraph-io"
], - "asset_group_id": 1073117848,
- "has_workflow_steps": false,
- "contribution_id": 1025863979,
- "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": 1015836120,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-03-20T18:54:32.990Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Content Manager",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836120,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117849,
- "created_at": "2026-03-20T18:54:33.089Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-4",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117848,
- "ancestor_ids": [
- 1073117835,
- 1073117848
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-10d88ddb-mediagraph-io",
- "my-first-lightbox-4"
], - "asset_group_id": 1073117849,
- "has_workflow_steps": false,
- "contribution_id": 1025863980,
- "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": 1015836120,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Content Manager",
- "created_at": "2026-03-20T18:54:32.990Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Content Manager",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836120,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117853,
- "created_at": "2026-03-20T18:54:33.655Z",
- "description": null,
- "slug": "tester-45d158da-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-45d158da-mediagraph-io"
], - "asset_group_id": 1073117853,
- "has_workflow_steps": false,
- "contribution_id": 1025863982,
- "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": 1015836121,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-03-20T18:54:33.571Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Library Manager",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836121,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117854,
- "created_at": "2026-03-20T18:54:33.670Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-5",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117853,
- "ancestor_ids": [
- 1073117835,
- 1073117853
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-45d158da-mediagraph-io",
- "my-first-lightbox-5"
], - "asset_group_id": 1073117854,
- "has_workflow_steps": false,
- "contribution_id": 1025863983,
- "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": 1015836121,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Library Manager",
- "created_at": "2026-03-20T18:54:33.571Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Library Manager",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836121,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117858,
- "created_at": "2026-03-20T18:54:34.229Z",
- "description": null,
- "slug": "tester-f27b09cc-mediagraph-io",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-f27b09cc-mediagraph-io"
], - "asset_group_id": 1073117858,
- "has_workflow_steps": false,
- "contribution_id": 1025863985,
- "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": 1015836122,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Tagger",
- "created_at": "2026-03-20T18:54:34.148Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Tagger",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836122,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117859,
- "created_at": "2026-03-20T18:54:34.244Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-6",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117858,
- "ancestor_ids": [
- 1073117835,
- 1073117858
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "tester-f27b09cc-mediagraph-io",
- "my-first-lightbox-6"
], - "asset_group_id": 1073117859,
- "has_workflow_steps": false,
- "contribution_id": 1025863986,
- "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": 1015836122,
- "first_name": "Schmidt, Stiedemann and Halvorson Test",
- "last_name": "Global Tagger",
- "created_at": "2026-03-20T18:54:34.148Z",
- "default_username": null,
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Schmidt, Stiedemann and Halvorson Test Global Tagger",
- "initials": "S G",
- "username": null,
- "title": null,
- "user_id": 1015836122,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117863,
- "created_at": "2026-03-20T18:54:35.152Z",
- "description": null,
- "slug": "alvaro-kovacek-dare-org",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": true,
- "parent_id": 1073117835,
- "ancestor_ids": [
- 1073117835
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "alvaro-kovacek-dare-org"
], - "asset_group_id": 1073117863,
- "has_workflow_steps": false,
- "contribution_id": 1025863988,
- "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": 1015836127,
- "first_name": "Carissa",
- "last_name": "Stanton",
- "created_at": "2026-03-20T18:54:35.070Z",
- "default_username": "wes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carissa Stanton",
- "initials": "C S",
- "username": null,
- "title": null,
- "user_id": 1015836127,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117864,
- "created_at": "2026-03-20T18:54:35.170Z",
- "name": "My First Lightbox",
- "description": null,
- "slug": "my-first-lightbox-7",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "parent_id": 1073117863,
- "ancestor_ids": [
- 1073117835,
- 1073117863
], - "visible_assets_count": null,
- "path_slugs": [
- "lightbox-uploads-storage",
- "alvaro-kovacek-dare-org",
- "my-first-lightbox-7"
], - "asset_group_id": 1073117864,
- "has_workflow_steps": false,
- "contribution_id": 1025863989,
- "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": 1015836127,
- "first_name": "Carissa",
- "last_name": "Stanton",
- "created_at": "2026-03-20T18:54:35.070Z",
- "default_username": "wes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carissa Stanton",
- "initials": "C S",
- "username": null,
- "title": null,
- "user_id": 1015836127,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117867,
- "created_at": "2026-03-20T18:54:35.656Z",
- "name": "Titian204",
- "description": "Quo enim maxime. Eveniet non quibusdam. Culpa aut magni.",
- "slug": "voluptatem_qui204",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Titian204"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "voluptatem_qui204"
], - "asset_group_id": 1073117867,
- "has_workflow_steps": false,
- "contribution_id": 1025863990,
- "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": 1015836127,
- "first_name": "Carissa",
- "last_name": "Stanton",
- "created_at": "2026-03-20T18:54:35.070Z",
- "default_username": "wes",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carissa Stanton",
- "initials": "C S",
- "username": null,
- "title": null,
- "user_id": 1015836127,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}
]object |
{- "storage_folder": {
- "name": "Test Folder",
- "description": "string",
- "parent_id": 1073118035,
- "organizer": true,
- "publish_type": "l",
- "publish_user_name": "string"
}
}{- "id": 1073118036,
- "created_at": "2026-03-20T18:54:55.476Z",
- "name": "Test Folder",
- "description": null,
- "slug": "test-folder",
- "organizer": null,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Magritte211",
- "Test Folder"
], - "parent_id": 1073118035,
- "ancestor_ids": [
- 1073118035
], - "visible_assets_count": null,
- "path_slugs": [
- "laborum_quidem211",
- "test-folder"
], - "asset_group_id": 1073118036,
- "has_workflow_steps": false,
- "contribution_id": 1025864091,
- "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": 1015836167,
- "first_name": "Gabriel",
- "last_name": "Russel",
- "created_at": "2026-03-20T18:54:51.468Z",
- "default_username": "chelsea_nienow",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Gabriel Russel",
- "initials": "G R",
- "username": null,
- "title": null,
- "user_id": 1015836167,
- "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": 1073117908,
- "created_at": "2026-03-20T18:54:40.281Z",
- "name": "Bernini206",
- "description": "Ea incidunt voluptates. Omnis eum quo. Ad eum aut.",
- "slug": "sit-eligendi206",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Bernini206"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "sit-eligendi206"
], - "asset_group_id": 1073117908,
- "has_workflow_steps": false,
- "contribution_id": 1025864014,
- "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": 1015836138,
- "first_name": "Etha",
- "last_name": "VonRueden",
- "created_at": "2026-03-20T18:54:39.707Z",
- "default_username": "madiewisoky",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Etha VonRueden",
- "initials": "E V",
- "username": null,
- "title": null,
- "user_id": 1015836138,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117902,
- "created_at": "2026-03-20T18:54:39.696Z",
- "name": "Degas205",
- "description": "Molestiae laborum laudantium. Sapiente occaecati sed. Vero esse nostrum.",
- "slug": "aut_eos205",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Degas205"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "aut_eos205"
], - "asset_group_id": 1073117902,
- "has_workflow_steps": false,
- "contribution_id": 1025864010,
- "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": 1015836137,
- "first_name": "Lindsey",
- "last_name": "Wuckert",
- "created_at": "2026-03-20T18:54:39.119Z",
- "default_username": "kieth",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Lindsey Wuckert",
- "initials": "L W",
- "username": null,
- "title": null,
- "user_id": 1015836137,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117870,
- "created_at": "2026-03-20T18:54:35.904Z",
- "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": 1073117870,
- "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": 1015836128,
- "first_name": "Kala",
- "last_name": "Goodwin",
- "created_at": "2026-03-20T18:54:35.737Z",
- "default_username": "shantelleromaguera",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kala Goodwin",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015836128,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - {
- "id": 1073117868,
- "created_at": "2026-03-20T18:54:35.884Z",
- "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": 1073117868,
- "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": 1015836128,
- "first_name": "Kala",
- "last_name": "Goodwin",
- "created_at": "2026-03-20T18:54:35.737Z",
- "default_username": "shantelleromaguera",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Kala Goodwin",
- "initials": "K G",
- "username": null,
- "title": null,
- "user_id": 1015836128,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}
]| id required | integer |
{- "id": 1073118000,
- "created_at": "2026-03-20T18:54:51.433Z",
- "name": "Magritte210",
- "description": "Ad occaecati optio. Aut ipsa deserunt. Ratione temporibus sint.",
- "slug": "repellat_dolores210",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Magritte210"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "repellat_dolores210"
], - "asset_group_id": 1073118000,
- "has_workflow_steps": false,
- "contribution_id": 1025864070,
- "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": 1015836166,
- "first_name": "Fletcher",
- "last_name": "Kirlin",
- "created_at": "2026-03-20T18:54:50.857Z",
- "default_username": "laurence_schowalter",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Fletcher Kirlin",
- "initials": "F K",
- "username": null,
- "title": null,
- "user_id": 1015836166,
- "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": 1073118071,
- "created_at": "2026-03-20T18:54:59.562Z",
- "name": "Test Folder Edit",
- "description": "Dolor ut totam. Nobis aut consequuntur. Non consequatur sapiente.",
- "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": 1073118071,
- "has_workflow_steps": false,
- "contribution_id": 1025864111,
- "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": 1015836186,
- "first_name": "Carita",
- "last_name": "Krajcik",
- "created_at": "2026-03-20T18:54:58.938Z",
- "default_username": "cuc_stoltenberg",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Carita Krajcik",
- "initials": "C K",
- "username": null,
- "title": null,
- "user_id": 1015836186,
- "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": 1015836197,
- "first_name": "Warren",
- "last_name": "Schamberger",
- "default_username": "kent",
- "confirmed_at": "2026-03-20T18:55:03.957Z",
- "created_at": "2026-03-20T18:55:03.958Z",
- "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": "Warren Schamberger",
- "initials": "W S",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836197
}, - "taxonomy_path_names": [ ]
}[- {
- "id": 712307827,
- "organization_id": 1018656707,
- "name": "perferendis",
- "description": null,
- "user_id": 1015836331,
- "created_at": "2026-03-20T18:55:52.331Z",
- "updated_at": "2026-03-20T18:55:52.331Z",
- "user": {
- "id": 1015836331,
- "first_name": "Rosella",
- "last_name": "Berge",
- "default_username": "brandee",
- "confirmed_at": "2026-03-20T18:55:52.263Z",
- "created_at": "2026-03-20T18:55:52.263Z",
- "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": "Rosella Berge",
- "initials": "R B",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836331
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712307826,
- "organization_id": 1018656707,
- "name": "quia",
- "description": null,
- "user_id": 1015836330,
- "created_at": "2026-03-20T18:55:52.258Z",
- "updated_at": "2026-03-20T18:55:52.258Z",
- "user": {
- "id": 1015836330,
- "first_name": "Bernie",
- "last_name": "Keebler",
- "default_username": "shemika",
- "confirmed_at": "2026-03-20T18:55:52.188Z",
- "created_at": "2026-03-20T18:55:52.189Z",
- "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": "Bernie Keebler",
- "initials": "B K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836330
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712307825,
- "organization_id": 1018656707,
- "name": "soluta",
- "description": null,
- "user_id": 1015836329,
- "created_at": "2026-03-20T18:55:52.184Z",
- "updated_at": "2026-03-20T18:55:52.184Z",
- "user": {
- "id": 1015836329,
- "first_name": "Annmarie",
- "last_name": "Spencer",
- "default_username": "luellawunsch",
- "confirmed_at": "2026-03-20T18:55:52.112Z",
- "created_at": "2026-03-20T18:55:52.113Z",
- "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": "Annmarie Spencer",
- "initials": "A S",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836329
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}, - {
- "id": 712307824,
- "organization_id": 1018656707,
- "name": "Global Tag Tree",
- "description": null,
- "user_id": 1015836320,
- "created_at": "2026-03-20T18:55:48.822Z",
- "updated_at": "2026-03-20T18:55:48.822Z",
- "user": {
- "id": 1015836320,
- "first_name": "Marine",
- "last_name": "Macejkovic",
- "default_username": "hayden",
- "confirmed_at": "2026-03-20T18:55:48.608Z",
- "created_at": "2026-03-20T18:55:48.609Z",
- "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": "Marine Macejkovic",
- "initials": "M M",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836320
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true
}
]object |
{- "taxonomy": {
- "name": "Main Taxonomy",
- "description": "string"
}
}{- "id": 712307832,
- "organization_id": 1018656709,
- "name": "Main Taxonomy",
- "description": null,
- "user_id": 1015836342,
- "created_at": "2026-03-20T18:55:59.607Z",
- "updated_at": "2026-03-20T18:55:59.607Z",
- "user": {
- "id": 1015836342,
- "first_name": "Veronique",
- "last_name": "Langworth",
- "default_username": "duaneveum",
- "confirmed_at": "2026-03-20T18:55:56.075Z",
- "created_at": "2026-03-20T18:55:56.076Z",
- "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": "Veronique Langworth",
- "initials": "V L",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836342
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
{- "id": 712307829,
- "organization_id": 1018656708,
- "name": "quibusdam",
- "description": null,
- "user_id": 1015836341,
- "created_at": "2026-03-20T18:55:56.048Z",
- "updated_at": "2026-03-20T18:55:56.048Z",
- "user": {
- "id": 1015836341,
- "first_name": "Minta",
- "last_name": "Haag",
- "default_username": "maritza",
- "confirmed_at": "2026-03-20T18:55:55.975Z",
- "created_at": "2026-03-20T18:55:55.976Z",
- "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": "Minta Haag",
- "initials": "M H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836341
}, - "user_group_ids": [ ],
- "taxonomy_tag_roots": [ ],
- "editable": true,
- "user_groups": [ ]
}| id required | integer |
object |
{- "taxonomy": {
- "name": "Main Taxonomy Edit",
- "description": "string"
}
}{- "id": 712307834,
- "organization_id": 1018656710,
- "name": "Main Taxonomy Edit",
- "description": null,
- "user_id": 1015836361,
- "created_at": "2026-03-20T18:56:03.272Z",
- "updated_at": "2026-03-20T18:56:03.282Z",
- "user": {
- "id": 1015836361,
- "first_name": "Imogene",
- "last_name": "Weimann",
- "default_username": "augustine_schinner",
- "confirmed_at": "2026-03-20T18:56:03.204Z",
- "created_at": "2026-03-20T18:56:03.204Z",
- "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": "Imogene Weimann",
- "initials": "I W",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836361
}, - "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": 865182757,
- "user_id": 1015836448,
- "guid": "0bf87643",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-03-20T18:56:36.501Z",
- "updated_at": "2026-03-20T18:56:36.501Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025864520,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 0,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": false,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025864520,
- "name": "nobis",
- "text": "Illo voluptate deserunt. Qui praesentium voluptatum. Sit hic eos.",
- "featured": true,
- "slug": "ut-corrupti",
- "storage_folder_id": 1073118801,
- "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-03-20T18:56:36.490Z",
- "updated_at": "2026-03-20T18:56:36.490Z",
- "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": "1025864520-nobis",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073118801,
- "created_at": "2026-03-20T18:56:36.482Z",
- "name": "Cassatt216",
- "description": "Recusandae incidunt aut. Debitis et cum. Et fuga voluptatem.",
- "slug": "quos_cumque216",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Cassatt216"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "quos_cumque216"
], - "asset_group_id": 1073118801,
- "has_workflow_steps": false,
- "contribution_id": 1025864519,
- "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": 1015836457,
- "first_name": "Levi",
- "last_name": "Haag",
- "created_at": "2026-03-20T18:56:35.882Z",
- "default_username": "roman",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Levi Haag",
- "initials": "L H",
- "username": null,
- "title": null,
- "user_id": 1015836457,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 1015836448,
- "first_name": "Cherish",
- "last_name": "O'Connell",
- "created_at": "2026-03-20T18:56:32.386Z",
- "default_username": "elenor_stehr",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Cherish O'Connell",
- "initials": "C O",
- "username": null,
- "title": null,
- "user_id": 1015836448,
- "lang": null,
- "notify_new_membership_requests": null
}, - "aws_key": "AKIATBO5XF4ER7OYZDV6",
- "bucket": "mediagraph-assets-uploads-test",
- "ftp_password": "631c76d8",
- "ftp_url": "sftp://allen_hagenes%40brekke.io:631c76d8@//1018656718/d99c410d"
}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": 1060943901,
- "filename": "test.jpg",
- "file_size": 10000,
- "guid": "2f0702e5-f33f-4017-aa73-62575250bf19",
- "short_guid": "2f0702e5",
- "type": "Image",
- "ext": "jpg",
- "duration": null,
- "md5": null,
- "mime_type": "image/jpeg",
- "source_url": null,
- "thumb_url": null,
- "grid_url": null,
- "small_url": null,
- "description": null,
- "width": null,
- "height": null,
- "ppi": null,
- "expired": null,
- "expires_at": null,
- "release": false,
- "contract": false,
- "released": false,
- "has_people": null,
- "headline": null,
- "title": null,
- "credit_line": null,
- "event": null,
- "city": null,
- "state": null,
- "country": null,
- "sublocation": null,
- "featured_organization_name": null,
- "usage_terms": null,
- "content_preview": null,
- "has_transcript": false,
- "transcription_job_status": null,
- "creator": [ ],
- "vote": null,
- "nsfw_detected": false,
- "data_version_number": 1,
- "preview_type": "Image",
- "downloadable_previews": false,
- "block_level": 0,
- "rights_package_block_level": null,
- "max_block_level": 0,
- "textract_retrieved_at": null,
- "submitted": false,
- "preview_image_url": null,
- "checked_out_at": null,
- "frame_asset_id": null,
- "frame_status": null,
- "alt_text": null,
- "organization_id": 1018656719,
- "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": 865182758,
- "user_id": 1015836458,
- "aasm_state": "pending",
- "processing_finished_at": null,
- "processing_error": null,
- "processing_progress": null,
- "file_type": null,
- "created_at": "2026-03-20T18:56:40.792Z",
- "updated_at": "2026-03-20T18:56:40.865Z",
- "s3_upload_id": null,
- "s3_upload_key": "1018656719/a765dcf9/2f0702e5-f33f-4017-aa73-62575250bf19-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": 1015836458,
- "first_name": "Quintin",
- "last_name": "Romaguera",
- "created_at": "2026-03-20T18:56:36.535Z",
- "default_username": "phyllis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Quintin Romaguera",
- "initials": "Q R",
- "username": null,
- "title": null,
- "user_id": 1015836458,
- "lang": null,
- "notify_new_membership_requests": null
}, - "creator_tag": null,
- "storage_folder_path": "exercitationem_molestiae217",
- "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,
- "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": 1073118836,
- "created_at": "2026-03-20T18:56:40.768Z",
- "name": "Matisse217",
- "description": "Velit itaque est. Omnis consequuntur atque. Ut rerum voluptas.",
- "slug": "exercitationem_molestiae217",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Matisse217"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "exercitationem_molestiae217"
], - "asset_group_id": 1073118836,
- "has_workflow_steps": false,
- "contribution_id": 1025864540,
- "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": 1015836468,
- "first_name": "Victor",
- "last_name": "Collins",
- "created_at": "2026-03-20T18:56:40.169Z",
- "default_username": "genalemke",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Victor Collins",
- "initials": "V C",
- "username": null,
- "title": null,
- "user_id": 1015836468,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true,
- "workflow_steps": [ ]
}, - "collections": [ ],
- "lightboxes": [ ],
- "available_rights_packages": [
- {
- "id": 957302121,
- "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-03-20T18:56:36.714Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302122,
- "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-03-20T18:56:36.716Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302123,
- "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-03-20T18:56:36.718Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302124,
- "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-03-20T18:56:36.720Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302125,
- "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-03-20T18:56:36.721Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302126,
- "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-03-20T18:56:36.723Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302127,
- "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-03-20T18:56:36.724Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}, - {
- "id": 957302128,
- "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-03-20T18:56:36.727Z",
- "watermark": false,
- "personalize": false,
- "long_form_type": null,
- "prevent_download": false,
- "external_contract_id": null,
- "external_contract_location": null,
- "default": false,
- "block_level": 0,
- "user": {
- "id": 1015836458,
- "name": "Quintin Romaguera",
- "avatar_url": null
}, - "editable": true
}
], - "upload": {
- "id": 865182758,
- "user_id": 1015836458,
- "guid": "a765dcf9",
- "name": null,
- "note": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:56:40.778Z",
- "updated_at": "2026-03-20T18:56:40.778Z",
- "current_assets_count": 1,
- "assets_count": 1,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": true,
- "contribution_id": 1025864541,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 1,
- "pending_count": 1,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 0,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": true,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025864541,
- "name": "nemo",
- "text": "Quas maxime itaque. Ea et cupiditate. Ipsum placeat sunt.",
- "featured": true,
- "slug": "aliquam_sequi",
- "storage_folder_id": 1073118836,
- "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-03-20T18:56:40.777Z",
- "updated_at": "2026-03-20T18:56:40.777Z",
- "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": "1025864541-nemo",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "rights_packages": [ ],
- "storage_folder": {
- "id": 1073118836,
- "created_at": "2026-03-20T18:56:40.768Z",
- "name": "Matisse217",
- "description": "Velit itaque est. Omnis consequuntur atque. Ut rerum voluptas.",
- "slug": "exercitationem_molestiae217",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Matisse217"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "exercitationem_molestiae217"
], - "asset_group_id": 1073118836,
- "has_workflow_steps": false,
- "contribution_id": 1025864540,
- "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": 1015836468,
- "first_name": "Victor",
- "last_name": "Collins",
- "created_at": "2026-03-20T18:56:40.169Z",
- "default_username": "genalemke",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Victor Collins",
- "initials": "V C",
- "username": null,
- "title": null,
- "user_id": 1015836468,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 1015836458,
- "first_name": "Quintin",
- "last_name": "Romaguera",
- "created_at": "2026-03-20T18:56:36.535Z",
- "default_username": "phyllis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Quintin Romaguera",
- "initials": "Q R",
- "username": null,
- "title": null,
- "user_id": 1015836458,
- "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": 865182759,
- "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": 865182760,
- "user_id": 1015836481,
- "guid": "e8712016",
- "name": "Test Upload",
- "note": "API docs upload test",
- "aasm_state": null,
- "created_at": "2026-03-20T18:56:49.072Z",
- "updated_at": "2026-03-20T18:56:49.072Z",
- "current_assets_count": 0,
- "assets_count": 0,
- "tag_names": [ ],
- "default_rights_package_id": null,
- "done": false,
- "done_at": null,
- "standalone": false,
- "contribution_id": 1025864563,
- "agreed_at": null,
- "creator": null,
- "other_creator": null,
- "upload_state": "active",
- "paused_at": null,
- "stalled_at": null,
- "stalled_reason": null,
- "cancelled_at": null,
- "total_assets": 0,
- "pending_count": 0,
- "uploading_count": 0,
- "processing_count": 0,
- "processed_count": 0,
- "errored_count": 0,
- "stalled_count": 0,
- "all_requirements_met": false,
- "tag_suggesters_met": true,
- "rights_packages_met": true,
- "creator_tags_met": true,
- "unmet_tag_suggester_ids": [ ],
- "contribution": {
- "enabled": true,
- "id": 1025864563,
- "name": "Default",
- "text": null,
- "featured": true,
- "slug": null,
- "storage_folder_id": 1073118873,
- "auto_approve": false,
- "auto_add": false,
- "asset_group_id": 1073118873,
- "enable_comprehensive_tagging": false,
- "request_people_tags": false,
- "enable_tag_suggester": false,
- "enable_quick_upload": false,
- "create_place_name_tags": false,
- "created_at": "2026-03-20T18:56:45.743Z",
- "updated_at": "2026-03-20T18:56:45.743Z",
- "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": "1025864563-default",
- "tag_names": [ ],
- "contribution_tag_suggesters_attributes": [ ],
- "asset_group": {
- "id": 1073118873,
- "name": "Default",
- "description": null,
- "type": "StorageFolder",
- "slug": "1073118873"
}, - "rights_packages": [ ],
- "storage_folder": {
- "id": 1073118873,
- "created_at": "2026-03-20T18:56:45.741Z",
- "name": "Default",
- "description": null,
- "slug": "default",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Uploads",
- "Default"
], - "parent_id": 1073118872,
- "ancestor_ids": [
- 1073118872
], - "visible_assets_count": null,
- "path_slugs": [
- "uploads",
- "default"
], - "asset_group_id": 1073118873,
- "has_workflow_steps": false,
- "contribution_id": 1025864563,
- "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": 1015836481,
- "first_name": "Camilla",
- "last_name": "Bernhard",
- "created_at": "2026-03-20T18:56:45.585Z",
- "default_username": "markita_greenholt",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Camilla Bernhard",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 1015836481,
- "lang": null,
- "notify_new_membership_requests": null
}, - "editable": true
}, - "editable": true,
- "pending_uploads_count": 1
}, - "user": {
- "id": 1015836481,
- "first_name": "Camilla",
- "last_name": "Bernhard",
- "created_at": "2026-03-20T18:56:45.585Z",
- "default_username": "markita_greenholt",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Camilla Bernhard",
- "initials": "C B",
- "username": null,
- "title": null,
- "user_id": 1015836481,
- "lang": null,
- "notify_new_membership_requests": null
}, - "aws_key": "AKIATBO5XF4ER7OYZDV6",
- "bucket": "mediagraph-assets-uploads-test",
- "ftp_password": "55481172",
- "ftp_url": "sftp://loni%40vonrueden.info:55481172@//1018656721/9d6b89c7"
}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": 1053907233,
- "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-03-20T18:56:49.369Z",
- "updated_at": "2026-03-20T18:56:49.369Z",
- "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": 1066728729,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.371Z",
- "updated_at": "2026-03-20T18:56:49.371Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728730,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.373Z",
- "updated_at": "2026-03-20T18:56:49.373Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728731,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.374Z",
- "updated_at": "2026-03-20T18:56:49.374Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728732,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.376Z",
- "updated_at": "2026-03-20T18:56:49.376Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728733,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.377Z",
- "updated_at": "2026-03-20T18:56:49.377Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728734,
- "organization_id": 1018656722,
- "user_group_id": 1053907233,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.379Z",
- "updated_at": "2026-03-20T18:56:49.379Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015836490,
- "first_name": "Edwardo",
- "last_name": "Kunde",
- "created_at": "2026-03-20T18:56:49.174Z",
- "default_username": "weldon_lowe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Edwardo Kunde",
- "initials": "E K",
- "username": null,
- "title": null,
- "user_id": 1015836490,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 1053907234,
- "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-03-20T18:56:49.384Z",
- "updated_at": "2026-03-20T18:56:49.384Z",
- "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": 1066728735,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.386Z",
- "updated_at": "2026-03-20T18:56:49.386Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728736,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.387Z",
- "updated_at": "2026-03-20T18:56:49.387Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728737,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.389Z",
- "updated_at": "2026-03-20T18:56:49.389Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728738,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.391Z",
- "updated_at": "2026-03-20T18:56:49.391Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728739,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.392Z",
- "updated_at": "2026-03-20T18:56:49.392Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}, - {
- "id": 1066728740,
- "organization_id": 1018656722,
- "user_group_id": 1053907234,
- "asset_group_id": null,
- "user_id": 1015836490,
- "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-03-20T18:56:49.394Z",
- "updated_at": "2026-03-20T18:56:49.394Z",
- "preset": true,
- "federation_sharing": false,
- "federated_organization_id": null,
- "asset_group_permissions_count": 0
}
], - "sso_name": [ ],
- "destroyable": true,
- "user": {
- "id": 1015836490,
- "first_name": "Edwardo",
- "last_name": "Kunde",
- "created_at": "2026-03-20T18:56:49.174Z",
- "default_username": "weldon_lowe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Edwardo Kunde",
- "initials": "E K",
- "username": null,
- "title": null,
- "user_id": 1015836490,
- "lang": null,
- "notify_new_membership_requests": null
}
}, - {
- "id": 1053907235,
- "name": "Investment Management",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073118931,
- "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-03-20T18:56:53.055Z",
- "updated_at": "2026-03-20T18:56:53.055Z",
- "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": 1015836490,
- "first_name": "Edwardo",
- "last_name": "Kunde",
- "created_at": "2026-03-20T18:56:49.174Z",
- "default_username": "weldon_lowe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Edwardo Kunde",
- "initials": "E K",
- "username": null,
- "title": null,
- "user_id": 1015836490,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073118931,
- "created_at": "2026-03-20T18:56:53.068Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Investment Management Storage",
- "Group Uploads"
], - "parent_id": 1073118930,
- "ancestor_ids": [
- 1073118930
], - "visible_assets_count": null,
- "path_slugs": [
- "investment-management-storage",
- "group-uploads"
], - "asset_group_id": 1073118931,
- "has_workflow_steps": false,
- "contribution_id": 1025864595,
- "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": 1015836490,
- "first_name": "Edwardo",
- "last_name": "Kunde",
- "created_at": "2026-03-20T18:56:49.174Z",
- "default_username": "weldon_lowe",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Edwardo Kunde",
- "initials": "E K",
- "username": null,
- "title": null,
- "user_id": 1015836490,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907235,
- "name": "Investment Management",
- "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": 1053907242,
- "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-03-20T18:57:03.305Z",
- "updated_at": "2026-03-20T18:57:03.305Z",
- "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": 1015836508,
- "first_name": "Janel",
- "last_name": "Reilly",
- "created_at": "2026-03-20T18:56:59.147Z",
- "default_username": "elviapagac",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Janel Reilly",
- "initials": "J R",
- "username": null,
- "title": null,
- "user_id": 1015836508,
- "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": 1053907238,
- "name": "Cosmetics",
- "description": null,
- "is_open": false,
- "invite_emails": null,
- "invite_note": null,
- "invite_domain": null,
- "enable_home_collection": false,
- "collection_id": null,
- "storage_folder_id": 1073118962,
- "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-03-20T18:56:59.094Z",
- "updated_at": "2026-03-20T18:56:59.094Z",
- "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": 1015836499,
- "first_name": "Jerry",
- "last_name": "Mayer",
- "created_at": "2026-03-20T18:56:53.116Z",
- "default_username": "roxanne",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jerry Mayer",
- "initials": "J M",
- "username": null,
- "title": null,
- "user_id": 1015836499,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073118962,
- "created_at": "2026-03-20T18:56:59.110Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Cosmetics Storage",
- "Group Uploads"
], - "parent_id": 1073118961,
- "ancestor_ids": [
- 1073118961
], - "visible_assets_count": null,
- "path_slugs": [
- "cosmetics-storage",
- "group-uploads"
], - "asset_group_id": 1073118962,
- "has_workflow_steps": false,
- "contribution_id": 1025864612,
- "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": 1015836499,
- "first_name": "Jerry",
- "last_name": "Mayer",
- "created_at": "2026-03-20T18:56:53.116Z",
- "default_username": "roxanne",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Jerry Mayer",
- "initials": "J M",
- "username": null,
- "title": null,
- "user_id": 1015836499,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907238,
- "name": "Cosmetics",
- "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": 1053907245,
- "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": 1073119024,
- "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-03-20T18:57:07.030Z",
- "updated_at": "2026-03-20T18:57:07.060Z",
- "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": 1015836517,
- "first_name": "Vaughn",
- "last_name": "Steuber",
- "created_at": "2026-03-20T18:57:03.324Z",
- "default_username": "alexis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Vaughn Steuber",
- "initials": "V S",
- "username": null,
- "title": null,
- "user_id": 1015836517,
- "lang": null,
- "notify_new_membership_requests": null
}, - "storage_folder": {
- "id": 1073119024,
- "created_at": "2026-03-20T18:57:07.041Z",
- "name": "Group Uploads",
- "description": null,
- "slug": "group-uploads",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Computer & Network Security Storage",
- "Group Uploads"
], - "parent_id": 1073119023,
- "ancestor_ids": [
- 1073119023
], - "visible_assets_count": null,
- "path_slugs": [
- "computer-network-security-storage",
- "group-uploads"
], - "asset_group_id": 1073119024,
- "has_workflow_steps": false,
- "contribution_id": 1025864646,
- "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": 1015836517,
- "first_name": "Vaughn",
- "last_name": "Steuber",
- "created_at": "2026-03-20T18:57:03.324Z",
- "default_username": "alexis",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Vaughn Steuber",
- "initials": "V S",
- "username": null,
- "title": null,
- "user_id": 1015836517,
- "lang": null,
- "notify_new_membership_requests": null
}, - "user_group": {
- "id": 1053907245,
- "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": 1015836535,
- "first_name": "Jospeh",
- "last_name": "Hegmann",
- "default_username": "deshawn",
- "confirmed_at": "2026-03-20T18:57:10.855Z",
- "created_at": "2026-03-20T18:57:10.856Z",
- "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": "Jospeh Hegmann",
- "initials": "J H",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836535,
- "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": 955336273,
- "user": {
- "id": 1015836553,
- "first_name": "Michiko",
- "last_name": "Littel",
- "default_username": "doughettinger",
- "confirmed_at": "2026-03-20T18:57:18.169Z",
- "created_at": "2026-03-20T18:57:18.170Z",
- "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": "Michiko Littel",
- "initials": "M L",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836553
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 1073119148,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-03-20T18:57:23.112Z",
- "updated_at": "2026-03-20T18:57:23.112Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "1073119148",
- "asset_group_path_names": [
- "Paul Klee219"
], - "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": 1073119218,
- "include_download_url": true,
- "group_assets": true,
- "trash": true,
- "note": "string"
}
}{- "id": 955336276,
- "organization_id": 1018656731,
- "user_id": 1015836573,
- "name": "My Integration Webhook",
- "note": null,
- "asset_group_id": 1073119218,
- "events": "asset.created,asset.updated",
- "include_download_url": false,
- "created_at": "2026-03-20T18:57:31.753Z",
- "updated_at": "2026-03-20T18:57:31.753Z",
- "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": 955336274,
- "user": {
- "id": 1015836563,
- "first_name": "Breanne",
- "last_name": "Kub",
- "default_username": "ernestina",
- "confirmed_at": "2026-03-20T18:57:23.144Z",
- "created_at": "2026-03-20T18:57:23.145Z",
- "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": "Breanne Kub",
- "initials": "B K",
- "user_group_ids": [ ],
- "last_organization": null,
- "title": null,
- "user_id": 1015836563
}, - "name": "Faker::Appliance",
- "note": null,
- "asset_group_id": 1073119183,
- "events": null,
- "include_download_url": false,
- "enabled": true,
- "created_at": "2026-03-20T18:57:27.624Z",
- "updated_at": "2026-03-20T18:57:27.624Z",
- "asset_group_type": "StorageFolder",
- "asset_group_slug": "1073119183",
- "asset_group_path_names": [
- "Picasso220"
], - "requests_count": 0,
- "group_assets": true,
- "trash": false,
- "asset_group": {
- "id": 1073119183,
- "created_at": "2026-03-20T18:57:27.616Z",
- "name": "Picasso220",
- "description": "Vel officiis fugit. Quam eveniet voluptatem. Ea omnis suscipit.",
- "slug": "et_molestiae220",
- "organizer": false,
- "type": "StorageFolder",
- "sub_type": null,
- "has_children": false,
- "path_names": [
- "Picasso220"
], - "parent_id": null,
- "ancestor_ids": [ ],
- "visible_assets_count": null,
- "path_slugs": [
- "et_molestiae220"
], - "asset_group_id": 1073119183,
- "has_workflow_steps": false,
- "contribution_id": 1025864735,
- "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": 1015836572,
- "first_name": "Arlie",
- "last_name": "Morar",
- "created_at": "2026-03-20T18:57:27.018Z",
- "default_username": "lissette_bode",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Arlie Morar",
- "initials": "A M",
- "username": null,
- "title": null,
- "user_id": 1015836572,
- "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": 1018656733,
- "enabled": false,
- "name": "Updated Webhook Name",
- "id": 955336279,
- "user_id": 1015836593,
- "note": null,
- "asset_group_id": 1073119288,
- "events": null,
- "include_download_url": false,
- "created_at": "2026-03-20T18:57:40.244Z",
- "updated_at": "2026-03-20T18:57:40.253Z",
- "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": 975327038,
- "name": "quia",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073119493,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-03-20T18:58:05.047Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 640905359,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073119493,
- "name": "Klimt229",
- "sub_type": null,
- "path_names": [
- "Klimt229"
], - "path_slugs": [
- "labore_sed229"
], - "description": "Expedita quae et. Dignissimos cum enim. Est deserunt est.",
- "created_at": "2026-03-20T18:58:05.044Z",
- "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": 1073119493,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073119493,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073119493,
- "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": 1015836653,
- "first_name": "Hipolito",
- "last_name": "Romaguera",
- "created_at": "2026-03-20T18:58:01.365Z",
- "default_username": "christianschamberger",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Hipolito Romaguera",
- "initials": "H R",
- "username": null,
- "title": null,
- "user_id": 1015836653,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "1073119493-labore_sed229",
- "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": 975327039,
- "name": "commodi",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073119523,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-03-20T18:58:08.753Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 640905360,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073119523,
- "name": "Pissarro230",
- "sub_type": null,
- "path_names": [
- "Pissarro230"
], - "path_slugs": [
- "qui_facilis230"
], - "description": "Accusantium aut perspiciatis. Eligendi eum corrupti. Sint architecto ipsam.",
- "created_at": "2026-03-20T18:58:08.750Z",
- "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": 1073119523,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073119523,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073119523,
- "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": 1015836662,
- "first_name": "Alicia",
- "last_name": "Gusikowski",
- "created_at": "2026-03-20T18:58:05.072Z",
- "default_username": "verlene",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Alicia Gusikowski",
- "initials": "A G",
- "username": null,
- "title": null,
- "user_id": 1015836662,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "1073119523-qui_facilis230",
- "can_manage": null,
- "can_edit": null,
- "editable": null,
- "role": null,
- "owner": null,
- "can_update_assets": true
}, - "workflow": {
- "name": "et",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:58:08.746Z",
- "auto": false,
- "user": {
- "id": 1015836662,
- "first_name": "Alicia",
- "last_name": "Gusikowski",
- "created_at": "2026-03-20T18:58:05.072Z",
- "default_username": "verlene",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Alicia Gusikowski",
- "initials": "A G",
- "username": null,
- "title": null,
- "user_id": 1015836662,
- "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": 975327040,
- "name": "Updated Step",
- "description": null,
- "aasm_state": "active",
- "position": 1,
- "asset_group_id": 1073119553,
- "auto_approval": true,
- "manual_approval_type": null,
- "approval_user_id": null,
- "created_at": "2026-03-20T18:58:12.303Z",
- "approval_user": null,
- "send_to_lightroom": false,
- "lightroom_user": null,
- "approve_on_frame": false,
- "set_in_progress_on_frame": false,
- "workflow_id": 640905361,
- "lightroom_user_id": null,
- "enable_descendants": true,
- "preserve_subfolders": true,
- "editable": true,
- "asset_group": {
- "id": 1073119553,
- "name": "Paul Klee231",
- "sub_type": null,
- "path_names": [
- "Paul Klee231"
], - "path_slugs": [
- "nostrum_at231"
], - "description": "Iusto voluptas esse. Voluptatibus quas quaerat. Dolores ut non.",
- "created_at": "2026-03-20T18:58:12.298Z",
- "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": 1073119553,
- "project_id": null,
- "commentable": true,
- "comments_count": 0,
- "commentable_id": 1073119553,
- "sort_order": null,
- "share_links_count": 0,
- "sortable": true,
- "folder_root_id": 1073119553,
- "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": 1015836671,
- "first_name": "Tamela",
- "last_name": "Klocko",
- "created_at": "2026-03-20T18:58:08.787Z",
- "default_username": "lee_kessler",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Tamela Klocko",
- "initials": "T K",
- "username": null,
- "title": null,
- "user_id": 1015836671,
- "lang": null,
- "notify_new_membership_requests": null
}, - "contribution_id": false,
- "slug": "1073119553-nostrum_at231",
- "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": 1015836680,
- "asset_group_asset_id": 1052042227,
- "workflow_step_id": 975327041,
- "created_at": null,
- "updated_at": null,
- "asset_group_id": null,
- "asset_id": 1060943903
}
]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": 640905364,
- "name": "quas",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:58:25.680Z",
- "updated_at": "2026-03-20T18:58:25.680Z",
- "user": {
- "id": 1015836702,
- "first_name": "Samuel",
- "last_name": "Turcotte",
- "created_at": "2026-03-20T18:58:22.024Z",
- "default_username": "kevenharber",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Samuel Turcotte",
- "initials": "S T",
- "username": null,
- "title": null,
- "user_id": 1015836702,
- "lang": null,
- "notify_new_membership_requests": null
}, - "steps": [ ],
- "editable": true
}
]Create a new workflow for the organization.
object |
{- "workflow": {
- "name": "string"
}
}{- "id": 640905367,
- "organization_id": 1018656746,
- "user_id": 1015836720,
- "name": "Review Workflow",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:58:33.982Z",
- "updated_at": "2026-03-20T18:58:33.982Z",
- "auto": false,
- "access_request_id": null
}Get details of a specific workflow.
| id required | integer |
{- "id": 640905365,
- "name": "nam",
- "description": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:58:29.412Z",
- "updated_at": "2026-03-20T18:58:29.412Z",
- "user": {
- "id": 1015836711,
- "first_name": "Minda",
- "last_name": "Gerhold",
- "created_at": "2026-03-20T18:58:25.704Z",
- "default_username": "jerome",
- "timezone": null,
- "guest": null,
- "guest_email": null,
- "avatar_url": null,
- "name": "Minda Gerhold",
- "initials": "M G",
- "username": null,
- "title": null,
- "user_id": 1015836711,
- "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": 640905368,
- "organization_id": 1018656747,
- "user_id": 1015836729,
- "description": null,
- "aasm_state": null,
- "created_at": "2026-03-20T18:58:38.047Z",
- "updated_at": "2026-03-20T18:58:38.055Z",
- "auto": false,
- "access_request_id": null
}