EventTriggers

public enum EventTriggers : BoxEnum

Event triggers for webhooks

  • A file is uploaded

    Declaration

    Swift

    case fileUploaded
  • A file is previewed

    Declaration

    Swift

    case filePreviewed
  • A file is downloaded

    Declaration

    Swift

    case fileDownloaded
  • A file is moved to the trash

    Declaration

    Swift

    case fileTrashed
  • A file is permanently deleted

    Declaration

    Swift

    case fileDeleted
  • A file is restored from the trash

    Declaration

    Swift

    case fileRestored
  • A file is copied

    Declaration

    Swift

    case fileCopied
  • A file is moved from one folder to another

    Declaration

    Swift

    case fileMoved
  • A file is locked

    Declaration

    Swift

    case fileLocked
  • A file is unlocked

    Declaration

    Swift

    case fileUnlocked
  • A file was renamed

    Declaration

    Swift

    case fileRenamed
  • A comment object is created

    Declaration

    Swift

    case commentCreated
  • A comment object is edited

    Declaration

    Swift

    case commentUpdated
  • A comment object is removed

    Declaration

    Swift

    case commentDeleted
  • A task is created

    Declaration

    Swift

    case taskAssignmentCreated
  • A task assignment is changed

    Declaration

    Swift

    case taskAssignmentUpdated
  • A new metadata template instance is associated with a file or folder

    Declaration

    Swift

    case metadataInstanceCreated
  • An attribute (value) is updated/deleted for an existing metadata template instance associated with a file or folder

    Declaration

    Swift

    case metadataInstanceUpdated
  • An existing metadata template instance associated with a file or folder is deleted

    Declaration

    Swift

    case metadataInstanceDeleted
  • A folder is created

    Declaration

    Swift

    case folderCreated
  • A folder was renamed

    Declaration

    Swift

    case folderRenamed
  • A folder is downloaded

    Declaration

    Swift

    case folderDownloaded
  • A folder is restored from the trash

    Declaration

    Swift

    case folderRestored
  • A folder is permanently removed

    Declaration

    Swift

    case folderDeleted
  • A copy of a folder is made

    Declaration

    Swift

    case folderCopied
  • A folder is moved to a different folder

    Declaration

    Swift

    case folderMoved
  • A folder is moved to the trash

    Declaration

    Swift

    case folderTrashed
  • When a webhook is deleted

    Declaration

    Swift

    case webhookDeleted
  • A collaboration is created

    Declaration

    Swift

    case collaborationCreated
  • A collaboration has been accepted

    Declaration

    Swift

    case collaborationAccepted
  • A collaboration has been rejected

    Declaration

    Swift

    case collaborationRejected
  • A collaboration has been removed

    Declaration

    Swift

    case collaborationRemoved
  • A collaboration has been updated

    Declaration

    Swift

    case collaborationUpdated
  • A shared link was deleted

    Declaration

    Swift

    case sharedLinkDeleted
  • A shared link was created

    Declaration

    Swift

    case sharedLinkCreated
  • A shared link was updated

    Declaration

    Swift

    case sharedLinkUpdated
  • A sign request is completed

    Declaration

    Swift

    case signRequestCompleted
  • A sign request is declined

    Declaration

    Swift

    case signRequestDeclined
  • A sign request is expired

    Declaration

    Swift

    case signRequestExpired
  • Custom value for enum values not yet implemented in the SDK

    Declaration

    Swift

    case customValue(String)
  • Declaration

    Swift

    public init(_ value: String)
  • Declaration

    Swift

    public var description: String { get }