improved

2026 May Week 4 release: Updates to existing APIs

Summary: Updated APIs for Document Generator. Updated APIs for Integration. Updated APIs for Workspace.

Document Generator

Link to the documentation

Document Generator (v v3)


What's New


POST /v3/teamsites/{teamsiteId}/livedocTemplates/generate

Submit LiveDoc generation from uploaded template

Result


API changes are backward compatible


Integration

Link to the documentation

Integration (v v2)


What's Changed


DELETE /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/versions/{workspaceVersionId}/comments/{commentId}
Parameters:

Changed: spaceId in path

The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item the comment belongs to.
Changed: workspaceVersionId in path
The unique identifier of the workspace item version the comment belongs to.
Changed: commentId in path
The unique identifier of the comment to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to delete this comment. Only the comment author or users with manage permission on the item may delete it.
New response : 404 Not Found
Not Found - the specified comment does not exist or the authenticated user cannot see it. Verify all path identifiers are correct before retrying.
Changed response : 204 No Content
No Content - the comment and all its replies were successfully deleted.

DELETE /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/versions/{workspaceVersionId}/comments/{commentId}/reply/{replyId}
Parameters:

Changed: spaceId in path

The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item the reply belongs to.
Changed: workspaceVersionId in path
The unique identifier of the workspace item version the comment belongs to.
Changed: commentId in path
The unique identifier of the parent comment whose reply will be deleted.
Changed: replyId in path
The unique identifier of the reply to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to delete this reply. Only the reply author or users with manage permission on the item may delete it.
New response : 404 Not Found
Not Found - the specified reply does not exist or the authenticated user cannot see it. Verify both commentId and replyId are correct before retrying.
Changed response : 204 No Content
No Content - the reply was successfully deleted.

PUT /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/versions/{workspaceVersionId}/comments/{commentId}/resolve
Parameters:

Changed: spaceId in path

The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item the comment belongs to.
Changed: workspaceVersionId in path
The unique identifier of the workspace item version the comment belongs to.
Changed: commentId in path
The unique identifier of the comment to mark as resolved.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to resolve this comment. Verify the seismic.workspace.manage scope is granted and that the user has manage permission on the item before retrying.
New response : 404 Not Found
Not Found - the specified comment does not exist or the authenticated user cannot see it. Verify all path identifiers are correct before retrying.
Changed response : 204 No Content
No Content - the comment was successfully marked as resolved.

POST /integration/v2/workspace/folders
Parameters:

Changed: Content-Type in header

MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json

  • Changed property parentFolderId (string)

    UUID of the parent folder where the new folder will be created. Use "root" to create at the user's root level.

  • Changed property name (string)

    The display name for the new folder. Must be unique within the parent folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
Changed response : 201 Created
Created

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the newly created workspace folder, in UUID format.

    • Changed property type (string)

      The content type of this item; either "folder" for standard folders or "rootFolder" for the user's root folder.

    • Changed property repository (string)

      The repository where this item resides; for workspace items this is always "workspace".

    • Changed property resourceUrl (string)

      The fully-qualified REST API URL to access this folder resource directly.

    • Changed property createdAt (string -> string)

      ISO 8601 timestamp indicating when this folder was originally created.

    • Changed property createdBy (object)

      Information about the user who created this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      ISO 8601 timestamp indicating when this folder was last modified.

    • Changed property modifiedBy (object)

      Information about the user who last modified this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this folder is a contextual folder linked to a CRM entity; true for CRM-linked folders, false for standard folders.

    • Changed property iconUrl (string)

      URL to the icon image representing this folder's visual type in the Seismic UI.

    • Changed property format (string)

      The format identifier for this item; for folders this is always "folder".

    • Changed property name (string)

      The display name of the folder as it appears in the workspace.

    • Changed property parentFolderId (string)

      The unique identifier of the parent folder containing this folder; "root" indicates a top-level folder in the user's root.

    • Changed property applicationUrls (array)

      List of application-specific URLs for accessing this folder in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/folders/{workspaceFolderId}/copy
Parameters:

Changed: workspaceFolderId in path

The unique identifier of the workspace folder to copy.
Changed: Content-Type in header
MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json

  • Changed property parentFolderId (number -> string)

    UUID of the destination folder where the folder copy will be placed. Use "root" to copy the folder to the user's root level.

  • Changed property name (string)

    Display name for the copied folder in the destination location. Must be unique within the destination folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property repository (string)

      The repository where this item resides; for workspace items this is always "workspace".

    • Changed property id (string)

      Unique identifier of the copied folder, in UUID format.

    • Changed property type (string)

      The content type of this item; either "folder" for standard folders or "rootFolder" for the user's root folder.

    • Changed property name (string)

      The display name of the copied folder.

    • Changed property parentFolderId (string)

      The unique identifier of the destination parent folder where the copy was placed.

    • Changed property resourceUrl (string)

      The fully-qualified REST API URL to access this copied folder resource.

    • Changed property createdAt (string -> string)

      ISO 8601 timestamp indicating when the copied folder was created.

    • Changed property createdBy (object)

      Information about the user who created this copy.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      ISO 8601 timestamp indicating when this folder was last modified.

    • Changed property modifiedBy (object)

      Information about the user who last modified this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this is a CRM-linked contextual folder; false for standard copied folders.

    • Changed property iconUrl (string)

      URL to the icon image representing this folder's visual type.

    • Changed property applicationUrls (array)

      List of application-specific URLs for accessing this folder in Seismic applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/folders/createContextualFolder
Parameters:

Changed: Content-Type in header

MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json

  • Changed property systemType (string)

    The CRM system type. Supported values are Salesforce, MicrosoftDynamicsCRM, Hubspot, OracleCX. Case-sensitive.
    Added enum values:

    • Salesforce
    • MicrosoftDynamicsCRM
    • Hubspot
    • OracleCX
  • Changed property contextType (string)

    The singular CRM entity type (e.g., "Account", "Opportunity"). Case-sensitive; typos create non-removable folders.

  • Changed property contextTypePlural (string)

    The plural CRM entity type used in the folder path (e.g., "Accounts", "Opportunities"). Case-sensitive.

  • Changed property contextId (string)

    The unique identifier of the CRM entity instance this folder is linked to. Case-sensitive.

  • Changed property name (string)

    The display name for the contextual folder. Typically the CRM entity name for easy identification.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property id (string)

      Unique identifier of the contextual folder, in UUID format.

    • Changed property type (string)

      The content type of this item; either "folder" for standard folders or "rootFolder" for the user's root folder.

    • Changed property repository (string)

      The repository where this item resides; always "workspace" for workspace items.

    • Changed property resourceUrl (string)

      The fully-qualified REST API URL to access this contextual folder resource.

    • Changed property createdAt (string -> string)

      ISO 8601 timestamp indicating when this contextual folder was first created.

    • Changed property createdBy (object)

      Information about the user who created this contextual folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      ISO 8601 timestamp indicating when this contextual folder was last modified.

    • Changed property modifiedBy (object)

      Information about the user who last modified this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Always true for contextual folders, indicating they are linked to a CRM business entity.

    • Changed property iconUrl (string)

      URL to the icon image representing this contextual folder's visual type.

    • Changed property format (string)

      The format identifier; for folders this is always "folder".

    • Changed property name (string)

      The display name of the contextual folder, typically derived from the CRM context.

    • Changed property parentFolderId (string)

      The unique identifier of the parent folder in the contextual folder hierarchy.

    • Changed property applicationUrls (array)

      List of application-specific URLs for accessing this folder in Seismic applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/files
Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
Changed response : 201 Created
Created

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the newly created workspace file, in UUID format.

    • Changed property type (string)

      The content type of this item; for files this is always "file".

    • Changed property repository (string)

      The repository where this item resides; for workspace items this is always "workspace".

    • Changed property resourceUrl (string)

      The fully-qualified REST API URL to access this file resource directly.

    • Changed property size (number)

      The size of the file in bytes.

    • Changed property versionId (string)

      Unique identifier of the current version of this file, in UUID format.

    • Changed property createdAt (string -> string)

      ISO 8601 timestamp indicating when this file was originally created in workspace.

    • Changed property createdBy (object)

      Information about the user who uploaded and created this file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      ISO 8601 timestamp indicating when this file was last modified or a new version was uploaded.

    • Changed property modifiedBy (object)

      Information about the user who last modified this file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this file is associated with a CRM contextual folder; false for standard workspace files.

    • Changed property iconUrl (string)

      URL to the icon image representing this file's format type in the Seismic UI.

    • Changed property format (string)

      The file format extension (e.g., pptx, pdf, docx) indicating the file type.

    • Changed property name (string)

      The display name of the file as it appears in the workspace.

    • Changed property parentFolderId (string)

      The unique identifier of the parent folder containing this file; "root" indicates the user's root folder.

    • Changed property deliveryOptions (array)

      List of delivery option identifiers available for sharing this file.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for accessing this file in Seismic applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

DELETE /integration/v2/workspace/files/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested file does not exist or the authenticated user cannot see it. Verify the workspaceContentId is correct and that the file has not been deleted before retrying.
Changed response : 200 OK
OK - the workspace file was successfully soft-deleted. The response body is empty.
Changed header : Date

GET /integration/v2/workspace/files/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file to retrieve information for.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property id (string)

      Unique identifier of the workspace file, in UUID format.

    • Changed property type (string)

      Item type discriminator; "file" for file items.

    • Changed property repository (string)

      Repository where the file resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this file resource directly.

    • Changed property size (number)

      Size of the file in bytes.

    • Changed property versionId (string)

      Unique identifier of the current version of the file, in UUID format. Changes whenever a new version is uploaded.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this file was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created this file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this file was last modified, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who last modified this file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this file is associated with a CRM contextual folder; false for standard workspace files.

    • Changed property iconUrl (string)

      URL to the icon image representing this file's format type in the Seismic UI.

    • Changed property format (string)

      The file format extension (e.g., "pptx", "pdf", "docx") indicating the file type.

    • Changed property name (string)

      Display name of the file as it appears in the workspace.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this file; "root" indicates the user's root folder.

    • Changed property deliveryOptions (array)

      Array of delivery option references available for sharing this file.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this file in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

PATCH /integration/v2/workspace/files/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file to update.

Request:

Changed content type : application/json

  • Changed property name (string)

    New display name for the file. Must be unique within the parent folder.

  • Changed property parentFolderId (string)

    UUID of the destination folder to move the file to. Use "root" for the user's root folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the updated workspace file, in UUID format.

    • Changed property type (string)

      Item type discriminator; "file" for file items.

    • Changed property repository (string)

      Repository where the file resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this file resource directly.

    • Changed property size (number)

      Size of the file in bytes (unchanged by metadata updates).

    • Changed property versionId (string)

      Unique identifier of the current version of the file, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this file was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who originally created this file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this file was last modified by this update, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who performed this update.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this file is associated with a CRM contextual folder; false for standard workspace files.

    • Changed property iconUrl (string)

      URL to the icon image representing this file's format type in the Seismic UI.

    • Changed property format (string)

      The file format extension (e.g., "pptx", "pdf", "docx") indicating the file type.

    • Changed property name (string)

      Display name of the file after the update.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this file after the update; "root" indicates the user's root folder.

    • Changed property deliveryOptions (array)

      Array of delivery option references available for sharing this file.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this file in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/files/{workspaceContentId}/copy
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file to copy.

Request:

Changed content type : application/json

  • Changed property parentFolderId (string)

    UUID of the destination folder where the file copy will be created. Use "root" for the user's root folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property repository (string)

      Repository where the copy resides; always "workspace" for Workspace API responses.

    • Changed property id (string)

      Unique identifier of the newly created file copy, in UUID format. Different from the source file ID.

    • Changed property versionId (string)

      Unique identifier of the initial version of the copy, in UUID format.

    • Changed property name (string)

      Display name of the copy in the destination folder.

    • Changed property type (string)

      Item type discriminator; "file" for file items.

    • Changed property size (number)

      Size of the copied file in bytes (matches the source file size).

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was created, in UTC.

    • Changed property createdBy (object)

      Information about the user who performed the copy operation.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was last modified, in UTC. Equal to createdAt on creation.

    • Changed property modifiedBy (object)

      Information about the user who last modified the copy.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property parentFolderId (string)

      Unique identifier of the destination parent folder where the copy was placed; "root" indicates the user's root folder.

    • Changed property format (string)

      The file format extension (e.g., "pptx", "pdf", "docx") of the copy.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access the copy directly.

    • Changed property isContextualContent (boolean)

      Indicates whether the copy is contextual content linked to a CRM entity; inherited from the destination folder context.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening the copy in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to the copy.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

GET /integration/v2/workspace/files/{workspaceContentId}/content
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file whose binary content to download.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
Success

  • Changed content type : application/json
    • Changed property downloadUrl (string)

      Pre-signed HTTPS URL to download the file content directly. Valid for a limited time; re-request if expired.

PUT /integration/v2/workspace/files/{workspaceContentId}/content
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace file to upload a new version for.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property id (string)

      Unique identifier of the workspace file (unchanged across versions), in UUID format.

    • Changed property type (string)

      Item type discriminator; "file" for file items.

    • Changed property repository (string)

      Repository where the file resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this file resource directly.

    • Changed property size (number)

      Size of the newly uploaded version in bytes.

    • Changed property versionId (string)

      Unique identifier of the newly created version, in UUID format. Previous versions remain accessible under their own versionIds.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the file was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who originally created the file.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the new version was uploaded, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who uploaded this version.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this file is associated with a CRM contextual folder; false for standard workspace files.

    • Changed property iconUrl (string)

      URL to the icon image representing this file's format type in the Seismic UI.

    • Changed property format (string)

      The file format extension (e.g., "pptx", "pdf", "docx", "txt") of the new version.

    • Changed property name (string)

      Display name of the file as it appears in the workspace.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this file; "root" indicates the user's root folder.

    • Changed property deliveryOptions (array)

      Array of delivery option references available for sharing this file.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this file in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

DELETE /integration/v2/workspace/urls/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace URL item to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested URL item does not exist or the authenticated user cannot see it. Verify the workspaceContentId is correct and that the URL item has not been deleted before retrying.
Changed response : 200 OK
OK - the workspace URL item was successfully soft-deleted. The response body is empty.
Changed header : Date

GET /integration/v2/workspace/urls/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace URL item to retrieve.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property url (object)

      Object wrapping the actual web address the URL item points to.

    • Changed property id (string)

      Unique identifier of the URL item, in UUID format.

    • Changed property type (string)

      Item type discriminator; "url" for URL items.

    • Changed property repository (string)

      Repository where the URL item resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this URL item resource directly.

    • Changed property versionId (string)

      Unique identifier of the current version of the URL item, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created the URL item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was last modified, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who last modified the URL item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this URL item is contextual content linked to a CRM entity.

    • Changed property iconUrl (string)

      URL to the icon image representing this URL item in the Seismic UI.

    • Changed property format (string)

      Format identifier; typically "url" for URL items.

    • Changed property name (string)

      Display name of the URL item as it appears in the workspace.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this URL item; "root" indicates a top-level item.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to this URL item.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this URL item in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

PATCH /integration/v2/workspace/urls/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace URL item to update.

Request:

Changed content type : application/json

  • Changed property name (string)

    New display name for the URL item. Must be unique within the parent folder.

  • Changed property parentFolderId (string)

    UUID of the destination folder to move the URL item to. Use "root" for the user's root folder.

  • Changed property url (object)

    Object wrapping the updated web address the URL item should point to.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property url (object)

      Object wrapping the updated web address the URL item points to.

    • Changed property id (string)

      Unique identifier of the URL item, in UUID format.

    • Changed property type (string)

      Item type discriminator; "url" for URL items.

    • Changed property repository (string)

      Repository where the URL item resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this URL item resource directly.

    • Changed property versionId (string)

      Unique identifier of the current version of the URL item, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created the URL item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was last modified by this update, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who performed this update.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this URL item is contextual content linked to a CRM entity.

    • Changed property iconUrl (string)

      URL to the icon image representing this URL item in the Seismic UI.

    • Changed property format (string)

      Format identifier; typically "url" for URL items.

    • Changed property name (string)

      Display name of the URL item after the update.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this URL item after the update; "root" indicates a top-level item.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to this URL item.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this URL item in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/urls/{workspaceContentId}/copy
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace URL item to copy.

Request:

Changed content type : application/json

  • Changed property ParentFolderId (string)

    UUID of the destination folder where the URL item copy will be created. Use "root" for the user's root folder. Note - this field is intentionally PascalCase for backward compatibility with the legacy API contract.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property url (object)

      Object wrapping the web address the copied URL item points to. Mirrors the source URL item.

    • Changed property id (string)

      Unique identifier of the newly created URL item copy, in UUID format. Different from the source URL item ID.

    • Changed property type (string)

      Item type discriminator; "url" for URL items.

    • Changed property repository (string)

      Repository where the copy resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access the copied URL item directly.

    • Changed property versionId (string)

      Unique identifier of the initial version of the copy, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was created, in UTC.

    • Changed property createdBy (object)

      Information about the user who performed the copy operation.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was last modified, in UTC. Equal to createdAt on creation.

    • Changed property modifiedBy (object)

      Information about the user who last modified the copy.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether the copy is contextual content linked to a CRM entity.

    • Changed property iconUrl (string)

      URL to the icon image representing the copy in the Seismic UI.

    • Changed property format (string)

      Format identifier; typically "url" for URL items.

    • Changed property name (string)

      Display name of the copy in the destination folder.

    • Changed property parentFolderId (string)

      Unique identifier of the destination parent folder where the copy was placed; "root" indicates a top-level item.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to the copy.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening the copy in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

DELETE /integration/v2/workspace/items/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace item (file, folder, or URL) to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.

GET /integration/v2/workspace/items/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace item (file, folder, or URL) to retrieve.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the workspace item, in UUID format.

    • Changed property type (string)

      Item type discriminator; one of "file", "folder", or "url".

    • Changed property repository (string)

      Repository where the item resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this resource directly.

    • Changed property size (number)

      Size of the underlying content in bytes; 0 for folders and URLs that have no binary payload.

    • Changed property versionId (string)

      Unique identifier of the current version of the item, in UUID format. Changes whenever a new version is uploaded.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this item was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created this item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this item was last modified, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who last modified this item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this item is contextual content linked to a CRM entity; true for CRM-linked items, false otherwise.

    • Changed property iconUrl (string)

      URL to the icon image representing this item's visual type in the Seismic UI.

    • Changed property format (string)

      File format identifier such as "pptx", "pdf", "url", or "folder". Used by clients to decide rendering or download behavior.

    • Changed property name (string)

      Display name of the item as it appears in the workspace.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this item; "root" indicates a top-level item in the user's root.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to this item, used to determine how the content can be shared or delivered.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this item in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

PATCH /integration/v2/workspace/items/{workspaceContentId}
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace item (file, folder, or URL) to update.

Request:

Changed content type : application/json

  • Changed property name (string)

    New display name for the workspace item.

  • Changed property parentFolderId (string)

    UUID of the destination folder to move the item to. Use "root" for the user's root folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the updated workspace item, in UUID format.

    • Changed property type (string)

      Item type discriminator; one of "file", "folder", or "url".

    • Changed property repository (string)

      Repository where the item resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this resource directly.

    • Changed property size (number)

      Size of the underlying content in bytes; 0 for folders and URLs that have no binary payload.

    • Changed property versionId (string)

      Unique identifier of the current version of the item, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this item was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created this item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this item was last modified by this update, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who performed this update.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this item is contextual content linked to a CRM entity; true for CRM-linked items, false otherwise.

    • Changed property iconUrl (string)

      URL to the icon image representing this item's visual type in the Seismic UI.

    • Changed property format (string)

      File format identifier such as "pptx", "pdf", "url", or "folder".

    • Changed property name (string)

      Display name of the item after the update.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this item after the update; "root" indicates a top-level item.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to this item.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this item in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

POST /integration/v2/workspace/items/{workspaceContentId}/copy
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace item (file, folder, or URL) to copy.

Request:

Changed content type : application/json

  • Changed property parentFolderId (string)

    UUID of the destination folder where the item copy will be created. Use "root" for the user's root folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json; charset=utf-8
    • Changed property id (string)

      Unique identifier of the newly created copy of the workspace item, in UUID format. Different from the source item ID.

    • Changed property type (string)

      Item type discriminator of the copy; one of "file", "folder", or "url". Matches the source item type.

    • Changed property repository (string)

      Repository where the copy resides; always "workspace" for Workspace API responses.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access the newly created copy directly.

    • Changed property size (number)

      Size of the underlying content in bytes; 0 for folders and URLs that have no binary payload.

    • Changed property versionId (string)

      Unique identifier of the initial version of the copy, in UUID format.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was created, in UTC.

    • Changed property createdBy (object)

      Information about the user who performed the copy operation.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the copy was last modified, in UTC. Equal to createdAt on creation.

    • Changed property modifiedBy (object)

      Information about the user who last modified the copy.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether the copy is contextual content linked to a CRM entity; inherited from the destination folder context.

    • Changed property iconUrl (string)

      URL to the icon image representing the copy's visual type in the Seismic UI.

    • Changed property format (string)

      File format identifier of the copy such as "pptx", "pdf", "url", or "folder".

    • Changed property name (string)

      Display name of the copy in the destination folder.

    • Changed property parentFolderId (string)

      Unique identifier of the destination parent folder where the copy was placed; "root" indicates a top-level item.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to the copy.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening the copy in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

DELETE /integration/v2/workspace/folders/{workspaceFolderId}
Parameters:

Changed: workspaceFolderId in path

The unique identifier of the workspace folder to delete.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to delete this folder. Verify the seismic.workspace.manage scope is granted and that the user has manage permission on the folder before retrying.
New response : 404 Not Found
Not Found - the requested folder does not exist or the authenticated user cannot see it. Verify the workspaceFolderId is correct and that the folder has not been deleted before retrying.
Changed response : 400 Bad Request
Bad Request - the workspaceFolderId is invalid or the folder cannot be deleted (for example, contextual folders cannot be removed). Validate the identifier and folder type before retrying.
Deleted header : Cache-Control
Deleted header : Pragma
Deleted header : Transfer-Encoding
Deleted header : X-Content-Type-Options
Deleted header : Strict-Transport-Security
Deleted header : api-supported-versions
Deleted header : Date

  • New content type : application/problem+json
  • Deleted content type : application/json
GET /integration/v2/workspace/folders/{workspaceFolderId}
Parameters:

Changed: workspaceFolderId in path

The unique identifier of the workspace folder to retrieve. Use "root" for the user's root folder.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property repository (string)

      Repository where the folder resides; always "workspace" for Workspace API responses.

    • Changed property id (string)

      Unique identifier of the workspace folder, in UUID format.

    • Changed property type (string)

      Item type discriminator; "folder" for standard folders or "rootFolder" for the user's root folder.

    • Changed property name (string)

      Display name of the folder as it appears in the workspace.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this folder; "root" indicates a top-level folder in the user's root.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this folder resource directly.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this folder was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this folder was last modified, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who last modified this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this folder is a contextual folder linked to a CRM entity; true for CRM-linked folders, false for standard folders.

    • Changed property iconUrl (string)

      URL to the icon image representing this folder's visual type in the Seismic UI.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this folder in Seismic web or mobile applications.

PATCH /integration/v2/workspace/folders/{workspaceFolderId}
Parameters:

Changed: workspaceFolderId in path

The unique identifier of the workspace folder to rename or move.
Changed: Content-Type in header
MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json

  • Changed property name (string)

    New display name for the folder. Must be unique within the parent folder.

  • Changed property parentFolderId (string)

    UUID of the new parent folder to move this folder to. Use "root" for the user's root folder.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property repository (string)

      Repository where the folder resides; always "workspace" for Workspace API responses.

    • Changed property id (string)

      Unique identifier of the updated workspace folder, in UUID format.

    • Changed property type (string)

      Item type discriminator; always "folder" for this response.

    • Changed property name (string)

      Display name of the folder after the update.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing this folder after the update; "root" indicates a top-level folder.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access this folder resource directly.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this folder was originally created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created this folder.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when this folder was last modified by this update, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who performed this update.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property isContextualContent (boolean)

      Indicates whether this folder is a contextual folder linked to a CRM entity; true for CRM-linked folders, false otherwise.

    • Changed property iconUrl (string)

      URL to the icon image representing this folder's visual type in the Seismic UI.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening this folder in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

GET /integration/v2/workspace/{workspaceContentId}/members
Parameters:

Changed: workspaceContentId in path

The unique identifier of the workspace item whose member list to retrieve.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    Changed items (object):
    • Changed property id (string)

      Unique identifier of the member user, in UUID format.

    • Changed property name (string)

      The full display name of the collaborator as it appears in Seismic.

    • Changed property email (string)

      The email address of the collaborator used for login and notifications.

    • Changed property role (string)

      The permission role of this member on the item, such as viewer or editor.

    • Changed property createdAt (string -> string)

      ISO 8601 timestamp indicating when this member was added to the item.

GET /integration/v2/users/recents
Return Type:

Changed response : 200 OK

OK

  • Changed content type : application/json
    Changed items (object):
    • Changed property modifiedAt (string -> string)
POST /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/versions/{workspaceVersionId}/comments/{commentId}/reply
Parameters:

Changed: spaceId in path

The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item containing the comment to reply to.
Changed: workspaceVersionId in path
The unique identifier of the workspace item version the comment belongs to.
Changed: commentId in path
The unique identifier of the comment to add a reply to.
Changed: Content-Type in header
MIME type of the request body; must be 'application/json' for this endpoint.

Return Type:

New response : 400 Bad Request

Bad Request - the reply body is malformed (missing text, bad @mention syntax, or unescaped braces). Validate the payload against the operation schema before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to reply to comments on this item. Verify the seismic.workspace.manage scope is granted and that the user has access to the item before retrying.
New response : 404 Not Found
Not Found - the specified space, item, version, or parent comment does not exist or the authenticated user cannot see it. Verify all path identifiers are correct before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property createdAt (string -> string)
POST /integration/v2/workspace/urls
Parameters:

Changed: openInNewWindow in query

When true, the URL opens in a new browser window; when false it opens in the current window.
Changed: Content-Type in header
MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json
New required properties:

  • name
  • parentFolderId
  • url
  • Changed property name (string)

    Display name for the new URL item as it will appear in the workspace.

  • Changed property parentFolderId (string)

    UUID of the parent folder where the URL item will be created. Use "root" to create it at the user's root level.

  • Changed property url (object)

    Object wrapping the actual web address the URL item should point to.

    • Changed property url (string -> string)

      The fully-qualified HTTP or HTTPS web address that the URL item points to.

  • Changed property description (string)

    Optional human-readable description shown alongside the URL item in the workspace UI.

  • Changed property thumbnail (string)

    Optional base64 data URI for a custom thumbnail image; if omitted, a default icon is used.

  • Changed property mode (string)

    Controls how the URL item is rendered when opened in a Seismic application.

Return Type:

New response : 400 Bad Request

Bad Request - the request body contains invalid or missing required fields. Validate the JSON payload against the operation schema (including required fields, value formats, and enum values) before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property repository (string)

      Repository where the URL item resides; always "workspace" for Workspace API responses.

    • Changed property id (string)

      Unique identifier of the newly created URL item, in UUID format.

    • Changed property versionId (string)

      Unique identifier of the initial version of the URL item, in UUID format.

    • Changed property name (string)

      Display name of the URL item as it appears in the workspace.

    • Changed property type (string)

      Item type discriminator; always "file" for URL items in workspace.

    • Changed property size (number)

      Size of the underlying content in bytes; typically 0 or small for URL items.

    • Changed property createdAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was created, in UTC.

    • Changed property createdBy (object)

      Information about the user who created the URL item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

    • Changed property modifiedAt (string -> string)

      RFC 3339 / ISO 8601 timestamp indicating when the URL item was last modified, in UTC.

    • Changed property modifiedBy (object)

      Information about the user who last modified the URL item.

      • Changed property id (string)

        User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

    • Changed property parentFolderId (string)

      Unique identifier of the parent folder containing the URL item; "root" indicates a top-level item.

    • Changed property format (string)

      Format identifier of the item; typically "url" for URL items.

    • Changed property resourceUrl (string)

      Fully-qualified REST API URL to access the URL item resource directly.

    • Changed property isContextualContent (boolean)

      Indicates whether this URL item is contextual content linked to a CRM entity.

    • Changed property iconUrl (string)

      URL to the icon image representing the URL item in the Seismic UI.

    • Changed property applicationUrls (array)

      List of application-specific URLs for opening the URL item in Seismic web or mobile applications.
      Changed items (object):

      • Changed property name (string)

        Display name of the Seismic application context (e.g., 'Default', 'Mobile') where this URL opens the item.

      • Changed property url (string)

        Fully-qualified HTTPS URL for opening this workspace item in the Seismic web application.

    • Changed property deliveryOptions (array)

      Array of delivery option references applicable to the URL item.
      Changed items (object):

      • Changed property id (string)

        Delivery option UUID identifying the sharing/delivery configuration available for this workspace item.

    • Changed property content (array)
GET /integration/v2/workspace/folders/{workspaceContentId}/items
Parameters:

Changed: workspaceContentId in path

The unique identifier of the folder whose items to list. Use "root" to list the user's root folder contents.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to perform this operation. Verify the required scope is granted and that the user has the necessary role on the target resource before retrying.
New response : 404 Not Found
Not Found - the requested resource does not exist or the authenticated user cannot see it. Verify the identifier is correct and that the resource has not been deleted before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property itemCount (number -> integer)

      Total number of items returned in the items array. When recursive=true this counts all nested items, not just direct children.

    • Changed property items (array)

      Array of items (files, folders, URLs) contained within the requested folder. Empty when the folder has no contents.
      Changed items (object):
      A single entry in the folder listing; can represent a file, folder, or URL item.

      • Changed property repository (string)

        Repository where the item resides; always "workspace" for Workspace API responses.

      • Changed property id (string)

        Unique identifier of the workspace item, in UUID format.

      • Changed property type (string)

        Item type discriminator; one of "file", "folder", or "url".

      • Changed property resourceUrl (string)

        Fully-qualified REST API URL to access this item directly.

      • Changed property createdAt (string -> string)

        RFC 3339 / ISO 8601 timestamp indicating when this item was originally created, in UTC.

      • Changed property createdBy (object)

        Information about the user who created this item.

        • Changed property id (string)

          User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

      • Changed property modifiedAt (string -> string)

        RFC 3339 / ISO 8601 timestamp indicating when this item was last modified, in UTC.

      • Changed property modifiedBy (object)

        Information about the user who last modified this item.

        • Changed property id (string)

          User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

      • Changed property isContextualContent (boolean)

        Indicates whether this item is contextual content linked to a CRM entity.

      • Changed property name (string)

        Display name of the item as it appears in the workspace.

      • Changed property parentFolderId (string)

        Unique identifier of the parent folder containing this item; matches the workspaceContentId of the folder being listed.

      • Changed property applicationUrls (array)

        List of application-specific URLs for opening this item in Seismic web or mobile applications.

  • Changed content type : text/plain
    • Changed property itemCount (number -> integer)

      Total number of items returned in the items array. When recursive=true this counts all nested items, not just direct children.

    • Changed property items (array)

      Array of items (files, folders, URLs) contained within the requested folder. Empty when the folder has no contents.
      Changed items (object):
      A single entry in the folder listing; can represent a file, folder, or URL item.

      • Changed property repository (string)

        Repository where the item resides; always "workspace" for Workspace API responses.

      • Changed property id (string)

        Unique identifier of the workspace item, in UUID format.

      • Changed property type (string)

        Item type discriminator; one of "file", "folder", or "url".

      • Changed property resourceUrl (string)

        Fully-qualified REST API URL to access this item directly.

      • Changed property createdAt (string -> string)

        RFC 3339 / ISO 8601 timestamp indicating when this item was originally created, in UTC.

      • Changed property createdBy (object)

        Information about the user who created this item.

        • Changed property id (string)

          User ID (UUID) of the Seismic user who created this item; use to look up user details via the Users API.

      • Changed property modifiedAt (string -> string)

        RFC 3339 / ISO 8601 timestamp indicating when this item was last modified, in UTC.

      • Changed property modifiedBy (object)

        Information about the user who last modified this item.

        • Changed property id (string)

          User ID (UUID) of the Seismic user who last modified this item; use to look up user details via the Users API.

      • Changed property isContextualContent (boolean)

        Indicates whether this item is contextual content linked to a CRM entity.

      • Changed property name (string)

        Display name of the item as it appears in the workspace.

      • Changed property parentFolderId (string)

        Unique identifier of the parent folder containing this item; matches the workspaceContentId of the folder being listed.

      • Changed property applicationUrls (array)

        List of application-specific URLs for opening this item in Seismic web or mobile applications.

GET /integration/v2/users/{userId}
Return Type:

Changed response : 200 OK

OK

  • Changed content type : application/json
    • Changed property createdAt (string -> string)
GET /integration/v2/users/profiles
Return Type:

Changed response : 200 OK

OK

  • Changed content type : application/json
    Changed items (object):
    • Changed property modifiedAt (string -> string)
GET /integration/v2/users
Return Type:

Changed response : 200 OK

OK

  • Changed content type : application/json
    • Changed property entries (array)
      Changed items (object):
      • Changed property createdAt (string -> string)
POST /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/versions/{workspaceVersionId}/comments
Parameters:

Changed: spaceId in path

The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item to add a comment to.
Changed: workspaceVersionId in path
The unique identifier of the workspace item version to associate the comment with.
Changed: Content-Type in header
MIME type of the request body; must be 'application/json' for this endpoint.

Request:

Changed content type : application/json

Return Type:

New response : 400 Bad Request

Bad Request - the comment body is malformed (invalid annotation, missing text, bad @mention syntax, or unescaped braces). Validate the payload against the operation schema before retrying.
New response : 401 Unauthorized
Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to comment on this item. Verify the seismic.workspace.manage scope is granted and that the user has comment permission on the item before retrying.
New response : 404 Not Found
Not Found - the specified space, item, or version does not exist or the authenticated user cannot see it. Verify the spaceId, workspaceContentId, and workspaceVersionId are correct before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property createdAt (string -> string)
GET /integration/v2/workspace/spaces/{spaceId}/items/{workspaceContentId}/comments
Parameters:

Changed: versionId in query

Workspace content version identifier; filters comments to the specified version only.
Changed: offset in query
Number of records to skip for pagination; defaults to 0.
Changed: limit in query
Maximum number of comment records to return per page; defaults to 40.
Changed: spaceId in path
The unique identifier of the workspace space that contains the item.
Changed: workspaceContentId in path
The unique identifier of the workspace item whose comments to retrieve.

Return Type:

New response : 401 Unauthorized

Unauthorized - authentication credentials are missing, expired, or invalid. Acquire a fresh OAuth 2.0 bearer token and retry with the Authorization header set.
New response : 403 Forbidden
Forbidden - the authenticated user lacks permission to view comments on this item. Verify the required scope is granted and that the user has access to the workspace item before retrying.
New response : 404 Not Found
Not Found - the specified space or workspace item does not exist or the authenticated user cannot see it. Verify the spaceId and workspaceContentId are correct before retrying.
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property entries (array)
      Changed items (object):
      • Changed property createdAt (string -> string)
      • Changed property replies (array)
        Changed items (object):
        • Changed property createdAt (string -> string)

Result


API changes broke backward compatibility


Workspace

Link to the documentation

Workspace (v v1)


What's Changed


POST /workspace/v1/items/{workspaceContentId}/members
Parameters:

Changed: workspaceContentId in path

UUID of the workspace file or folder to which you are adding a collaborator. The authenticated user must have seismic.workspace.manage permission on this item.

Request:

Changed content type : application/json
New required properties:

  • id
  • role
  • Changed property id (string -> string)

    User ID of the person to invite as a collaborator on this workspace file or folder. Must be a valid active Seismic user ID.

  • Changed property role (string)

    Permission level for the member: Manager grants full edit and view access to the workspace item; Viewer grants view-only access without editing rights.
    Added enum values:

    • Manager
    • Viewer
Return Type:

New response : 400 Bad Request

Bad Request
New response : 401 Unauthorized
Unauthorized
New response : 403 Forbidden
Forbidden
New response : 404 Not Found
Not Found
New response : 409 Conflict
Conflict
New response : 500 Internal Server Error
Internal Server Error
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property id (string -> string)

      User ID of the member who was added as a collaborator; equivalent to the id field supplied in the request body.

    • Changed property name (string)

      Display name of the user who was added as a collaborator on this workspace item.

    • Changed property email (string)

      Email address of the user who was added as a collaborator on this workspace item.

    • Changed property role (string)

      Permission role granted to the member: Manager allows edit and view access; Viewer allows view-only access.
      Added enum values:

      • Manager
      • Viewer
    • Changed property createdAt (string -> string)

      RFC 3339 UTC timestamp indicating when the member was added to this workspace content (e.g., 2025-07-16T00:00:00Z).

DELETE /workspace/v1/items/{workspaceContentId}/members/{memberId}
Parameters:

Changed: workspaceContentId in path

UUID of the workspace file or folder from which the member's access is being revoked. The authenticated user must have seismic.workspace.manage permission on this item.
Changed: memberId in path
UUID of the member (user ID) whose access permissions are being removed from the workspace item. Obtain this ID from the member listing or Add Member response.

Return Type:

New response : 400 Bad Request

Bad Request
New response : 401 Unauthorized
Unauthorized
New response : 403 Forbidden
Forbidden
New response : 404 Not Found
Not Found
New response : 500 Internal Server Error
Internal Server Error
Changed response : 200 OK
OK

  • New content type : application/json
PUT /workspace/v1/items/{workspaceContentId}/owner
Parameters:

Changed: workspaceContentId in path

UUID of the workspace file or folder for which ownership is being transferred. Only the current owner can initiate a transfer; the authenticated user must be the current owner of this item.

Request:

Changed content type : application/json
New required properties:

  • ownerId
  • Changed property ownerId (string -> string)

    User ID of the collaborator to transfer ownership to; must be an existing member of the content before the transfer can be initiated.

Return Type:

New response : 401 Unauthorized

Unauthorized
New response : 403 Forbidden
Forbidden
New response : 500 Internal Server Error
Internal Server Error
Changed response : 200 OK
OK

  • New content type : application/json
  • Deleted content type : text/plain
    Changed response : 400 Bad Request

    Bad Request

  • New content type : application/problem+json
  • Deleted content type : text/plain
    Changed response : 404 Not Found

    Not Found

  • New content type : application/problem+json
  • Deleted content type : text/plain
GET /workspace/v1/files/{workspaceContentId}/customProperties
Parameters:

Changed: includeInvisibledInDC in query

Controls property visibility filter: true returns all properties including those hidden in DocCenter (Seismic's content library portal); false (default) returns only visible properties. Use true when auditing all configured properties on a file.
Changed: workspaceContentId in path
UUID of the workspace file resource. Use the content ID returned by workspace file listing APIs to fetch its associated DocCenter custom properties.

Return Type:

New response : 400 Bad Request

Bad Request
New response : 401 Unauthorized
Unauthorized
New response : 403 Forbidden
Forbidden
New response : 404 Not Found
Not Found
New response : 500 Internal Server Error
Internal Server Error
Changed response : 200 OK
OK

  • Changed content type : application/json
    • Changed property properties (array)

      List of custom properties associated with the workspace file, sourced from DocCenter configuration.
      Changed items (object):

      • Changed property id (string -> string)

        Unique identifier of the custom property definition configured in DocCenter (Seismic's content library portal); use this as the property reference key for update operations.

      • Changed property name (string)

        Display name of the custom property as it appears in DocCenter content views.

      • Changed property values (array)

        List of string values currently assigned to this custom property for the workspace file.

      • Changed property isVisibleInDocCenter (boolean)

        Indicates whether this custom property is visible to users browsing content in DocCenter (Seismic's content library portal).

      • Changed property isVisibleInDocCenterFilter (boolean)

        Indicates whether this property appears as a filter option when browsing or searching in DocCenter (Seismic's content library portal).

      • Changed property orderIndex (number)

        Numeric index controlling the display order of this property relative to others in DocCenter views; lower values appear first.

GET /workspace/v1/files/{workspaceContentId}/versions
Parameters:

Added: limit in query

Maximum number of version records to return per page. Use with offset for paginated traversal of large version histories. Defaults to 100 if not specified.
Added: offset in query
Zero-based index of the first version record to return. Use with limit to paginate through all versions; combine offset=0 with limit=100 to get the first 100 versions.
Changed: workspaceContentId in path
UUID of the workspace file resource. Use the content ID returned by file listing APIs to retrieve version history for that specific file.

Return Type:

New response : 401 Unauthorized

Unauthorized
New response : 403 Forbidden
Forbidden
New response : 500 Internal Server Error
Internal Server Error
Changed response : 404 Not Found
Not Found

  • New content type : application/problem+json
  • Deleted content type : application/json
    Changed response : 200 OK

    OK

  • Changed content type : application/json
    • Added property total (integer)

      Total number of version records available for this workspace file across all pages; use with limit and offset to paginate results.

    • Added property limit (integer)

      Maximum number of version records returned in this response page; reflects the limit query parameter value applied to the request.

    • Added property offset (integer)

      Zero-based index of the first version record in this response page; reflects the offset query parameter value applied to the request.

    • Changed property id (string -> string)

      Unique identifier of the workspace content file, equivalent to the workspaceContentId path parameter. Use this value as workspaceContentId in subsequent API calls.

    • Changed property name (string)

      Display name of the workspace content file as shown in the workspace.

    • Changed property versions (array)

      Ordered list of all version records returned for this page of the workspace content file's version history.
      Changed items (object):

      • Changed property id (string -> string)

        Unique identifier of this specific file version record, equivalent to versionId. Use this value when referencing a specific version in version-related operations.

      • Changed property version (integer)

        Sequential version number starting from 1, Incremental after each new version.

      • Changed property createdBy (string -> string)

        User ID of the person who created or uploaded this file version.

      • Changed property createdAt (string -> string)

        RFC 3339 UTC timestamp indicating when this version was created or uploaded; all timestamps are in UTC (e.g., 2025-07-16T00:00:00Z).

      • Changed property versionCreationMethod (string)

        Indicates how this file version was created; for example Upload means a direct file upload, Copy means duplicated from another file, OneDrive Sync or Google Sync means synced from cloud storage.
        Added enum values:

        • UNKNOWN
        • LiveSend
        • Add to Cart
        • Add to MeetingSpace
        • Copy
        • Save to Workspace
        • Record
        • Freestyle
        • Guided Assembly
        • LiveDoc Generated
        • LiveDoc Iteration
        • Automatic Update
        • Upload
        • Revert to PPT
        • Convert to PDF
        • Restore
        • Edit With Office Online
        • OneDrive Sync
        • Google Sync
        • Meeting Recording
      • Changed property sourceContent (object)
        • Changed property contentId (string -> string)

          Workspace content ID of the source file from which this version was copied.

        • Changed property versionId (string -> string)

          Version ID of the specific source file version that was copied to create this version.

Result


API changes broke backward compatibility