docdoku-plm-api

DocdokuPlmApi - JavaScript client for docdoku-plm-api DocDokuPLM API Description and Reference This SDK is automatically generated by the Swagger Codegen project:

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install docdoku-plm-api --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your docdoku-plm-api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('docdoku-plm-api') in javascript files from the directory you ran the last command above from.

git

# If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var DocdokuPlmApi = require('docdoku-plm-api');

var api = new DocdokuPlmApi.AccountsApi()

var body = new DocdokuPlmApi.AccountDTO(); // {AccountDTO} Account to create


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createAccount(body, callback);

Documentation for API Endpoints

All URIs are relative to http://docdokuplm.net/eplmp-server-rest/api

Class Method HTTP request Description
DocdokuPlmApi.AccountsApi createAccount POST /accounts/create Create a new account
DocdokuPlmApi.AccountsApi deleteGCMAccount DELETE /accounts/gcm Update GCM account for authenticated user
DocdokuPlmApi.AccountsApi getAccount GET /accounts/me Get authenticated user's account
DocdokuPlmApi.AccountsApi getWorkspaces GET /accounts/workspaces Get workspaces where authenticated user is active
DocdokuPlmApi.AccountsApi setGCMAccount PUT /accounts/gcm Update GCM account for authenticated user
DocdokuPlmApi.AccountsApi updateAccount PUT /accounts/me Update user's account
DocdokuPlmApi.AdminApi createProvider POST /admin/providers Create a new OAuth provider
DocdokuPlmApi.AdminApi enableAccount PUT /admin/accounts/{login}/enable Enable or disable account
DocdokuPlmApi.AdminApi enableWorkspace PUT /admin/workspace/{workspaceId}/enable Enable or disable workspace
DocdokuPlmApi.AdminApi getAccounts GET /admin/accounts Get all registered accounts
DocdokuPlmApi.AdminApi getDetailedProvider GET /admin/providers/{id} Get detailed provider
DocdokuPlmApi.AdminApi getDetailedProviders GET /admin/providers Get detailed providers
DocdokuPlmApi.AdminApi getDiskSpaceUsageStats GET /admin/disk-usage-stats Get disk usage stats
DocdokuPlmApi.AdminApi getDocumentsStats GET /admin/documents-stats Get documents stats
DocdokuPlmApi.AdminApi getPartsStats GET /admin/parts-stats Get parts stats
DocdokuPlmApi.AdminApi getPlatformOptions GET /admin/platform-options Get platform options
DocdokuPlmApi.AdminApi getProductsStats GET /admin/products-stats Get products stats
DocdokuPlmApi.AdminApi getUsersStats GET /admin/users-stats Get users stats
DocdokuPlmApi.AdminApi indexAllWorkspaces PUT /admin/index-all Synchronize index for all workspaces
DocdokuPlmApi.AdminApi indexWorkspaceData PUT /admin/index/{workspaceId} Synchronize index for given workspace
DocdokuPlmApi.AdminApi removeProvider DELETE /admin/providers/{id} Delete OAuth provider
DocdokuPlmApi.AdminApi setPlatformOptions PUT /admin/platform-options Set platform options
DocdokuPlmApi.AdminApi updateAccount PUT /admin/accounts Update account
DocdokuPlmApi.AdminApi updateProvider PUT /admin/providers/{id} Update OAuth provider
DocdokuPlmApi.AuthApi getProvider GET /auth/providers/{id} Get OAuth provider details
DocdokuPlmApi.AuthApi getProviders GET /auth/providers Get registered OAuth providers
DocdokuPlmApi.AuthApi login POST /auth/login Try to authenticate with credentials
DocdokuPlmApi.AuthApi logout GET /auth/logout Log out connected user
DocdokuPlmApi.AuthApi oAuthLogin POST /auth/oauth Try to authenticate with OAuth
DocdokuPlmApi.AuthApi sendPasswordRecover POST /auth/recover Recover account password
DocdokuPlmApi.AuthApi sendPasswordRecovery POST /auth/recovery Send password recovery request
DocdokuPlmApi.ChangeItemsApi addTagToChangeIssue POST /workspaces/{workspaceId}/changes/issues/{issueId}/tags Attached a new tag to a change issue
DocdokuPlmApi.ChangeItemsApi addTagToChangeOrder POST /workspaces/{workspaceId}/changes/orders/{orderId}/tags Add new tag to order
DocdokuPlmApi.ChangeItemsApi addTagsToChangeRequest POST /workspaces/{workspaceId}/changes/requests/{requestId}/tags Attach a new tag to a change request
DocdokuPlmApi.ChangeItemsApi createIssue POST /workspaces/{workspaceId}/changes/issues Create a new change issue
DocdokuPlmApi.ChangeItemsApi createMilestone POST /workspaces/{workspaceId}/changes/milestones Create a new milestone
DocdokuPlmApi.ChangeItemsApi createOrder POST /workspaces/{workspaceId}/changes/orders Create order
DocdokuPlmApi.ChangeItemsApi createRequest POST /workspaces/{workspaceId}/changes/requests Create request
DocdokuPlmApi.ChangeItemsApi getIssue GET /workspaces/{workspaceId}/changes/issues/{issueId} Get change issue with given id
DocdokuPlmApi.ChangeItemsApi getIssues GET /workspaces/{workspaceId}/changes/issues Get change issues for given parameters
DocdokuPlmApi.ChangeItemsApi getMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId} Get a milestone by id
DocdokuPlmApi.ChangeItemsApi getMilestones GET /workspaces/{workspaceId}/changes/milestones Get milestones for given parameters
DocdokuPlmApi.ChangeItemsApi getOrder GET /workspaces/{workspaceId}/changes/orders/{orderId} Get order
DocdokuPlmApi.ChangeItemsApi getOrders GET /workspaces/{workspaceId}/changes/orders Get orders for given parameters
DocdokuPlmApi.ChangeItemsApi getOrdersByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/orders Get change orders for a given milestone
DocdokuPlmApi.ChangeItemsApi getRequest GET /workspaces/{workspaceId}/changes/requests/{requestId} Get change request by id
DocdokuPlmApi.ChangeItemsApi getRequests GET /workspaces/{workspaceId}/changes/requests Get requests for given parameters
DocdokuPlmApi.ChangeItemsApi getRequestsByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/requests Get change requests for a given milestone
DocdokuPlmApi.ChangeItemsApi removeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId} Delete change issue
DocdokuPlmApi.ChangeItemsApi removeMilestone DELETE /workspaces/{workspaceId}/changes/milestones/{milestoneId} Delete milestone
DocdokuPlmApi.ChangeItemsApi removeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId} Delete order
DocdokuPlmApi.ChangeItemsApi removeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId} Delete change request
DocdokuPlmApi.ChangeItemsApi removeTagFromChangeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId}/tags/{tagName} Delete tag attached to a change request
DocdokuPlmApi.ChangeItemsApi removeTagsFromChangeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId}/tags/{tagName} Delete a tag attached to a change issue
DocdokuPlmApi.ChangeItemsApi removeTagsFromChangeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId}/tags/{tagName} Delete tag attached to order
DocdokuPlmApi.ChangeItemsApi saveAffectedIssues PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-issues Attach issue to a change request
DocdokuPlmApi.ChangeItemsApi saveAffectedRequests PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-requests Attach request to order
DocdokuPlmApi.ChangeItemsApi saveChangeIssueAffectedDocuments PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-documents Attach a document to a change issue
DocdokuPlmApi.ChangeItemsApi saveChangeIssueAffectedParts PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-parts Attach a part to a change issue
DocdokuPlmApi.ChangeItemsApi saveChangeItemTags PUT /workspaces/{workspaceId}/changes/issues/{issueId}/tags Update tags attached to a change issue
DocdokuPlmApi.ChangeItemsApi saveChangeOrderAffectedDocuments PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-documents Attach document to order
DocdokuPlmApi.ChangeItemsApi saveChangeOrderAffectedParts PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-parts Attach part to order
DocdokuPlmApi.ChangeItemsApi saveChangeOrderTags PUT /workspaces/{workspaceId}/changes/orders/{orderId}/tags Update tag attached to order
DocdokuPlmApi.ChangeItemsApi saveChangeRequestAffectedDocuments PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-documents Attach document to a change request
DocdokuPlmApi.ChangeItemsApi saveChangeRequestAffectedParts PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-parts Attach part to a change request
DocdokuPlmApi.ChangeItemsApi saveChangeRequestTags PUT /workspaces/{workspaceId}/changes/requests/{requestId}/tags Update tag attached to a change request
DocdokuPlmApi.ChangeItemsApi searchIssuesByName GET /workspaces/{workspaceId}/changes/issues/link Search change issue with given name
DocdokuPlmApi.ChangeItemsApi searchRequestsByName GET /workspaces/{workspaceId}/changes/requests/link Search request with given name
DocdokuPlmApi.ChangeItemsApi updateChangeIssueACL PUT /workspaces/{workspaceId}/changes/issues/{issueId}/acl Update ACL of a change issue
DocdokuPlmApi.ChangeItemsApi updateChangeOrderACL PUT /workspaces/{workspaceId}/changes/orders/{orderId}/acl Update ACL of the order
DocdokuPlmApi.ChangeItemsApi updateChangeRequestACL PUT /workspaces/{workspaceId}/changes/requests/{requestId}/acl Update ACL of a change request
DocdokuPlmApi.ChangeItemsApi updateIssue PUT /workspaces/{workspaceId}/changes/issues/{issueId} Update change issue
DocdokuPlmApi.ChangeItemsApi updateMilestone PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId} Update milestone
DocdokuPlmApi.ChangeItemsApi updateMilestoneACL PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId}/acl Update ACL of a milestone
DocdokuPlmApi.ChangeItemsApi updateOrder PUT /workspaces/{workspaceId}/changes/orders/{orderId} Update order
DocdokuPlmApi.ChangeItemsApi updateRequest PUT /workspaces/{workspaceId}/changes/requests/{requestId} Update change request
DocdokuPlmApi.DocumentApi addDocTag POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Add tags to document revision
DocdokuPlmApi.DocumentApi checkInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkin Checkin document revision
DocdokuPlmApi.DocumentApi checkOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkout Checkout document revision
DocdokuPlmApi.DocumentApi createNewDocumentVersion PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/newVersion Create a new version of the document revision
DocdokuPlmApi.DocumentApi createSharedDocument POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/share Create a shared document for given document revision
DocdokuPlmApi.DocumentApi deleteDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Delete the document revision
DocdokuPlmApi.DocumentApi getAbortedWorkflowListInDocument GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/aborted-workflows Get document revision aborted workflow history
DocdokuPlmApi.DocumentApi getDocumentRevision GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Get document revision
DocdokuPlmApi.DocumentApi getInverseDocumentLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-document-link Get inverse document revisions links
DocdokuPlmApi.DocumentApi getInversePartsLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-part-link Get inverse part revisions links
DocdokuPlmApi.DocumentApi getInversePathDataLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-path-data-link Get inverse path data links
DocdokuPlmApi.DocumentApi getInverseProductInstancesLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-product-instances-link Get inverse product instances links
DocdokuPlmApi.DocumentApi markDocumentRevisionAsObsolete PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/obsolete Set document revision as obsolete
DocdokuPlmApi.DocumentApi moveDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/move Move document revision to given folder
DocdokuPlmApi.DocumentApi publishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/publish Publish a document revision
DocdokuPlmApi.DocumentApi releaseDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/release Release document revision
DocdokuPlmApi.DocumentApi removeAttachedFileFromDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Remove attached file from document iteration
DocdokuPlmApi.DocumentApi removeDocTags DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags/{tagName} Remove tags from document revision
DocdokuPlmApi.DocumentApi renameAttachedFileInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Rename attached files of document iteration
DocdokuPlmApi.DocumentApi saveDocTags PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Set the tags of the document revision
DocdokuPlmApi.DocumentApi subscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/subscribe Subscribe to notifications on change events for given document revision
DocdokuPlmApi.DocumentApi subscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/subscribe Subscribe to notifications on state events for given document revision
DocdokuPlmApi.DocumentApi unPublishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/unpublish Un-publish a document revision
DocdokuPlmApi.DocumentApi unSubscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/unsubscribe Unsubscribe from notifications on change events for given document revision
DocdokuPlmApi.DocumentApi undoCheckOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/undocheckout Undo checkout document revision
DocdokuPlmApi.DocumentApi unsubscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/unsubscribe Unsubscribe to notifications on state events for given document revision
DocdokuPlmApi.DocumentApi updateDocumentIteration PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration} Update document iteration
DocdokuPlmApi.DocumentApi updateDocumentRevisionACL PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/acl Update document revision ACL
DocdokuPlmApi.DocumentBaselineApi createDocumentBaseline POST /workspaces/{workspaceId}/document-baselines Create a new document baseline
DocdokuPlmApi.DocumentBaselineApi deleteBaseline DELETE /workspaces/{workspaceId}/document-baselines/{baselineId} Delete a document baseline
DocdokuPlmApi.DocumentBaselineApi exportDocumentFiles GET /workspaces/{workspaceId}/document-baselines/{baselineId}/export-files Export document baseline's files
DocdokuPlmApi.DocumentBaselineApi getBaseline GET /workspaces/{workspaceId}/document-baselines/{baselineId} Get document baseline by id
DocdokuPlmApi.DocumentBaselineApi getBaselineLight GET /workspaces/{workspaceId}/document-baselines/{baselineId}-light Get document baseline in a light format
DocdokuPlmApi.DocumentBaselineApi getDocumentBaselines GET /workspaces/{workspaceId}/document-baselines Get document baselines
DocdokuPlmApi.DocumentBinaryApi downloadDocumentFile GET /files/{workspaceId}/documents/{documentId}/{version}/{iteration}/{fileName} Download document file
DocdokuPlmApi.DocumentBinaryApi uploadDocumentFiles POST /files/{workspaceId}/documents/{documentId}/{version}/{iteration} Upload document file
DocdokuPlmApi.DocumentTemplateBinaryApi downloadDocumentTemplateFile GET /files/{workspaceId}/document-templates/{templateId}/{fileName} Download document template file
DocdokuPlmApi.DocumentTemplateBinaryApi uploadDocumentTemplateFiles POST /files/{workspaceId}/document-templates/{templateId} Upload document template file
DocdokuPlmApi.DocumentTemplatesApi createDocumentMasterTemplate POST /workspaces/{workspaceId}/document-templates Create a new document template
DocdokuPlmApi.DocumentTemplatesApi deleteDocumentMasterTemplate DELETE /workspaces/{workspaceId}/document-templates/{templateId} Delete document template
DocdokuPlmApi.DocumentTemplatesApi generateDocumentMasterId GET /workspaces/{workspaceId}/document-templates/{templateId}/generate_id Generate document template id
DocdokuPlmApi.DocumentTemplatesApi getDocumentMasterTemplate GET /workspaces/{workspaceId}/document-templates/{templateId} Get document template by id
DocdokuPlmApi.DocumentTemplatesApi getDocumentMasterTemplates GET /workspaces/{workspaceId}/document-templates Get document templates
DocdokuPlmApi.DocumentTemplatesApi removeAttachedFileFromDocumentTemplate DELETE /workspaces/{workspaceId}/document-templates/{templateId}/files/{fileName} Remove attached file from document template
DocdokuPlmApi.DocumentTemplatesApi renameAttachedFileInDocumentTemplate PUT /workspaces/{workspaceId}/document-templates/{templateId}/files/{fileName} Rename attached file in document template
DocdokuPlmApi.DocumentTemplatesApi updateDocumentMasterTemplate PUT /workspaces/{workspaceId}/document-templates/{templateId} Update document template
DocdokuPlmApi.DocumentTemplatesApi updateDocumentMasterTemplateACL PUT /workspaces/{workspaceId}/document-templates/{templateId}/acl Update document template ACL
DocdokuPlmApi.DocumentsApi addDocTag POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Add tags to document revision
DocdokuPlmApi.DocumentsApi checkInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkin Checkin document revision
DocdokuPlmApi.DocumentsApi checkOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkout Checkout document revision
DocdokuPlmApi.DocumentsApi countCheckedOutDocs GET /workspaces/{workspaceId}/documents/countCheckedOut Count checked out document revisions
DocdokuPlmApi.DocumentsApi createNewDocumentVersion PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/newVersion Create a new version of the document revision
DocdokuPlmApi.DocumentsApi createSharedDocument POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/share Create a shared document for given document revision
DocdokuPlmApi.DocumentsApi deleteDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Delete the document revision
DocdokuPlmApi.DocumentsApi getAbortedWorkflowListInDocument GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/aborted-workflows Get document revision aborted workflow history
DocdokuPlmApi.DocumentsApi getCheckedOutDocuments GET /workspaces/{workspaceId}/documents/checkedout Get checked out document revisions
DocdokuPlmApi.DocumentsApi getDocumentRevision GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Get document revision
DocdokuPlmApi.DocumentsApi getDocumentsInWorkspace GET /workspaces/{workspaceId}/documents Get document revisions in workspace
DocdokuPlmApi.DocumentsApi getDocumentsInWorkspaceCount GET /workspaces/{workspaceId}/documents/count Count document revisions
DocdokuPlmApi.DocumentsApi getInverseDocumentLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-document-link Get inverse document revisions links
DocdokuPlmApi.DocumentsApi getInversePartsLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-part-link Get inverse part revisions links
DocdokuPlmApi.DocumentsApi getInversePathDataLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-path-data-link Get inverse path data links
DocdokuPlmApi.DocumentsApi getInverseProductInstancesLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-product-instances-link Get inverse product instances links
DocdokuPlmApi.DocumentsApi markDocumentRevisionAsObsolete PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/obsolete Set document revision as obsolete
DocdokuPlmApi.DocumentsApi moveDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/move Move document revision to given folder
DocdokuPlmApi.DocumentsApi publishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/publish Publish a document revision
DocdokuPlmApi.DocumentsApi releaseDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/release Release document revision
DocdokuPlmApi.DocumentsApi removeAttachedFileFromDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Remove attached file from document iteration
DocdokuPlmApi.DocumentsApi removeDocTags DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags/{tagName} Remove tags from document revision
DocdokuPlmApi.DocumentsApi renameAttachedFileInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Rename attached files of document iteration
DocdokuPlmApi.DocumentsApi saveDocTags PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Set the tags of the document revision
DocdokuPlmApi.DocumentsApi searchDocumentRevision GET /workspaces/{workspaceId}/documents/search Search document revisions
DocdokuPlmApi.DocumentsApi searchDocumentRevisionsToLink GET /workspaces/{workspaceId}/documents/doc_revs Search document revisions by id and/or name
DocdokuPlmApi.DocumentsApi subscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/subscribe Subscribe to notifications on change events for given document revision
DocdokuPlmApi.DocumentsApi subscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/subscribe Subscribe to notifications on state events for given document revision
DocdokuPlmApi.DocumentsApi unPublishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/unpublish Un-publish a document revision
DocdokuPlmApi.DocumentsApi unSubscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/unsubscribe Unsubscribe from notifications on change events for given document revision
DocdokuPlmApi.DocumentsApi undoCheckOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/undocheckout Undo checkout document revision
DocdokuPlmApi.DocumentsApi unsubscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/unsubscribe Unsubscribe to notifications on state events for given document revision
DocdokuPlmApi.DocumentsApi updateDocumentIteration PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration} Update document iteration
DocdokuPlmApi.DocumentsApi updateDocumentRevisionACL PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/acl Update document revision ACL
DocdokuPlmApi.EffectivityApi getEffectivity GET /workspaces/{workspaceId}/effectivities/{effectivityId} Get an effectivity from its ID
DocdokuPlmApi.EffectivityApi updateEffectivity PUT /workspaces/{workspaceId}/effectivities/{effectivityId} Update effectivity
DocdokuPlmApi.FilesApi downloadDirectPartFile GET /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/{fileName} Download part file without a sub type
DocdokuPlmApi.FilesApi downloadDocumentFile GET /files/{workspaceId}/documents/{documentId}/{version}/{iteration}/{fileName} Download document file
DocdokuPlmApi.FilesApi downloadDocumentTemplateFile GET /files/{workspaceId}/document-templates/{templateId}/{fileName} Download document template file
DocdokuPlmApi.FilesApi downloadFileFromPathData GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/{fileName} Download path data file
DocdokuPlmApi.FilesApi downloadFileFromPathDataIteration GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/iterations/{iteration}/{fileName} Download path data iteration file
DocdokuPlmApi.FilesApi downloadFileFromProductInstance GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/iterations/{iteration}/{fileName} Download product instance file
DocdokuPlmApi.FilesApi downloadPartFile GET /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/{subType}/{fileName} Download part file with a sub type
DocdokuPlmApi.FilesApi downloadPartTemplateFile GET /files/{workspaceId}/part-templates/{templateId}/{fileName} Download part template file
DocdokuPlmApi.FilesApi uploadAttachedFiles POST /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/attachedfiles Upload attached file
DocdokuPlmApi.FilesApi uploadDocumentFiles POST /files/{workspaceId}/documents/{documentId}/{version}/{iteration} Upload document file
DocdokuPlmApi.FilesApi uploadDocumentTemplateFiles POST /files/{workspaceId}/document-templates/{templateId} Upload document template file
DocdokuPlmApi.FilesApi uploadFilesToPathDataIteration POST /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/iterations/{iteration} Upload path data iteration file
DocdokuPlmApi.FilesApi uploadFilesToProductInstanceIteration POST /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/iterations/{iteration} Upload product instance files
DocdokuPlmApi.FilesApi uploadNativeCADFile POST /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/nativecad Upload CAD file
DocdokuPlmApi.FilesApi uploadPartTemplateFiles POST /files/{workspaceId}/part-templates/{templateId} Upload part template files
DocdokuPlmApi.FoldersApi createDocumentMasterInFolder POST /workspaces/{workspaceId}/folders/{folderId}/documents Create a new document revision in given folder
DocdokuPlmApi.FoldersApi createRootFolder POST /workspaces/{workspaceId}/folders Create root folder
DocdokuPlmApi.FoldersApi createSubFolder POST /workspaces/{workspaceId}/folders/{parentFolderPath}/folders Create a sub folder in a given folder
DocdokuPlmApi.FoldersApi deleteRootFolder DELETE /workspaces/{workspaceId}/folders/{folderId} Delete root folder
DocdokuPlmApi.FoldersApi getDocumentsWithGivenFolderIdAndWorkspaceId GET /workspaces/{workspaceId}/folders/{folderId}/documents Get document revisions in given folder
DocdokuPlmApi.FoldersApi getRootFolders GET /workspaces/{workspaceId}/folders Get root folders
DocdokuPlmApi.FoldersApi getSubFolders GET /workspaces/{workspaceId}/folders/{completePath}/folders Get sub folders of given folder
DocdokuPlmApi.FoldersApi moveFolder PUT /workspaces/{workspaceId}/folders/{folderId}/move Move a folder to given folder
DocdokuPlmApi.FoldersApi renameFolder PUT /workspaces/{workspaceId}/folders/{folderId} Rename a folder
DocdokuPlmApi.GroupsApi deleteUserGroupSubscription DELETE /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions/{tagName} Delete tag subscription of given user group
DocdokuPlmApi.GroupsApi getGroups GET /workspaces/{workspaceId}/groups Get user groups in given workspace
DocdokuPlmApi.GroupsApi getTagSubscriptionsForGroup GET /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions Get tag subscriptions of given user group
DocdokuPlmApi.GroupsApi getUsersInGroup GET /workspaces/{workspaceId}/groups/{groupId}/users Get users of given user group
DocdokuPlmApi.GroupsApi updateUserGroupSubscription PUT /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions/{tagName} Update or create tag subscription of given user group
DocdokuPlmApi.IssuesApi addTagToChangeIssue POST /workspaces/{workspaceId}/changes/issues/{issueId}/tags Attached a new tag to a change issue
DocdokuPlmApi.IssuesApi createIssue POST /workspaces/{workspaceId}/changes/issues Create a new change issue
DocdokuPlmApi.IssuesApi getIssue GET /workspaces/{workspaceId}/changes/issues/{issueId} Get change issue with given id
DocdokuPlmApi.IssuesApi getIssues GET /workspaces/{workspaceId}/changes/issues Get change issues for given parameters
DocdokuPlmApi.IssuesApi removeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId} Delete change issue
DocdokuPlmApi.IssuesApi removeTagsFromChangeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId}/tags/{tagName} Delete a tag attached to a change issue
DocdokuPlmApi.IssuesApi saveChangeIssueAffectedDocuments PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-documents Attach a document to a change issue
DocdokuPlmApi.IssuesApi saveChangeIssueAffectedParts PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-parts Attach a part to a change issue
DocdokuPlmApi.IssuesApi saveChangeItemTags PUT /workspaces/{workspaceId}/changes/issues/{issueId}/tags Update tags attached to a change issue
DocdokuPlmApi.IssuesApi searchIssuesByName GET /workspaces/{workspaceId}/changes/issues/link Search change issue with given name
DocdokuPlmApi.IssuesApi updateChangeIssueACL PUT /workspaces/{workspaceId}/changes/issues/{issueId}/acl Update ACL of a change issue
DocdokuPlmApi.IssuesApi updateIssue PUT /workspaces/{workspaceId}/changes/issues/{issueId} Update change issue
DocdokuPlmApi.LanguagesApi getLanguages GET /languages Get supported languages
DocdokuPlmApi.LayersApi createLayer POST /workspaces/{workspaceId}/products/{ciId}/layers Create a new layer for given product
DocdokuPlmApi.LayersApi createMarker POST /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Create a new marker in a given layer
DocdokuPlmApi.LayersApi deleteLayer DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Delete layer
DocdokuPlmApi.LayersApi deleteMarker DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers/{markerId} Delete marker
DocdokuPlmApi.LayersApi getLayersInProduct GET /workspaces/{workspaceId}/products/{ciId}/layers Get layers for given product
DocdokuPlmApi.LayersApi getMarkersInLayer GET /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Get markers of a given layer
DocdokuPlmApi.LayersApi updateLayer PUT /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Update layer
DocdokuPlmApi.ListOfValuesApi createLOV POST /workspaces/{workspaceId}/lov Create a new ListOfValues
DocdokuPlmApi.ListOfValuesApi deleteLOV DELETE /workspaces/{workspaceId}/lov/{name} Delete a ListOfValues
DocdokuPlmApi.ListOfValuesApi getLOV GET /workspaces/{workspaceId}/lov/{name} Get a ListOfValues from the given parameters
DocdokuPlmApi.ListOfValuesApi getLOVs GET /workspaces/{workspaceId}/lov Get a list of ListOfValues for given parameters
DocdokuPlmApi.ListOfValuesApi updateLOV PUT /workspaces/{workspaceId}/lov/{name} Update a ListOfValues
DocdokuPlmApi.MilestonesApi createMilestone POST /workspaces/{workspaceId}/changes/milestones Create a new milestone
DocdokuPlmApi.MilestonesApi getMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId} Get a milestone by id
DocdokuPlmApi.MilestonesApi getMilestones GET /workspaces/{workspaceId}/changes/milestones Get milestones for given parameters
DocdokuPlmApi.MilestonesApi getOrdersByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/orders Get change orders for a given milestone
DocdokuPlmApi.MilestonesApi getRequestsByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/requests Get change requests for a given milestone
DocdokuPlmApi.MilestonesApi removeMilestone DELETE /workspaces/{workspaceId}/changes/milestones/{milestoneId} Delete milestone
DocdokuPlmApi.MilestonesApi updateMilestone PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId} Update milestone
DocdokuPlmApi.MilestonesApi updateMilestoneACL PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId}/acl Update ACL of a milestone
DocdokuPlmApi.ModificationNotificationsApi acknowledgeNotification PUT /workspaces/{workspaceId}/notifications/{notificationId} Acknowledge a modification notification
DocdokuPlmApi.OrdersApi addTagToChangeOrder POST /workspaces/{workspaceId}/changes/orders/{orderId}/tags Add new tag to order
DocdokuPlmApi.OrdersApi createOrder POST /workspaces/{workspaceId}/changes/orders Create order
DocdokuPlmApi.OrdersApi getOrder GET /workspaces/{workspaceId}/changes/orders/{orderId} Get order
DocdokuPlmApi.OrdersApi getOrders GET /workspaces/{workspaceId}/changes/orders Get orders for given parameters
DocdokuPlmApi.OrdersApi removeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId} Delete order
DocdokuPlmApi.OrdersApi removeTagsFromChangeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId}/tags/{tagName} Delete tag attached to order
DocdokuPlmApi.OrdersApi saveAffectedRequests PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-requests Attach request to order
DocdokuPlmApi.OrdersApi saveChangeOrderAffectedDocuments PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-documents Attach document to order
DocdokuPlmApi.OrdersApi saveChangeOrderAffectedParts PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-parts Attach part to order
DocdokuPlmApi.OrdersApi saveChangeOrderTags PUT /workspaces/{workspaceId}/changes/orders/{orderId}/tags Update tag attached to order
DocdokuPlmApi.OrdersApi updateChangeOrderACL PUT /workspaces/{workspaceId}/changes/orders/{orderId}/acl Update ACL of the order
DocdokuPlmApi.OrdersApi updateOrder PUT /workspaces/{workspaceId}/changes/orders/{orderId} Update order
DocdokuPlmApi.OrganizationsApi addMember PUT /organizations/add-member Add a member to the authenticated user's organization
DocdokuPlmApi.OrganizationsApi createOrganization POST /organizations Create authenticated user's organization
DocdokuPlmApi.OrganizationsApi deleteOrganization DELETE /organizations Delete authenticated user's organization
DocdokuPlmApi.OrganizationsApi getMembers GET /organizations/members Get members of the authenticated user's organization
DocdokuPlmApi.OrganizationsApi getOrganization GET /organizations Get organization for authenticated user
DocdokuPlmApi.OrganizationsApi moveMember PUT /organizations/move-member Move a member up or down in the authenticated user's organization
DocdokuPlmApi.OrganizationsApi removeMember PUT /organizations/remove-member Remove a member to the authenticated user's organization
DocdokuPlmApi.OrganizationsApi updateOrganization PUT /organizations Update authenticated user's organization
DocdokuPlmApi.PartApi addPartTag POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Add tags to part revision
DocdokuPlmApi.PartApi checkIn PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkin Checkin part revision
DocdokuPlmApi.PartApi checkOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkout Checkout part revision
DocdokuPlmApi.PartApi createNewPartVersion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/newVersion Create new part version
DocdokuPlmApi.PartApi createSharedPart POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/share Create a new shared part from part revision
DocdokuPlmApi.PartApi deletePartRevision DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Delete part revision
DocdokuPlmApi.PartApi getAbortedWorkflowListInPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/aborted-workflows Get part revision's aborted workflow list
DocdokuPlmApi.PartApi getBaselinesWherePartRevisionHasIterations GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/baselines Get product baselines where part revision is involved
DocdokuPlmApi.PartApi getConversionStatus GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Get part iteration conversion status
DocdokuPlmApi.PartApi getInstancesUnderPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/instances Get instances under given part revision (latest checked-in view)
DocdokuPlmApi.PartApi getPartRevision GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Get part revision
DocdokuPlmApi.PartApi getProductInstanceMasters GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-product-instance-masters Get product instance where part revision is in use
DocdokuPlmApi.PartApi getUsedByAsComponent GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-component Get part revisions where given part revision is used as a component
DocdokuPlmApi.PartApi getUsedByAsSubstitute GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-substitute Get part revisions where given part revision is used as a substitute
DocdokuPlmApi.PartApi markPartRevisionAsObsolete PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/obsolete Set part revision as obsolete
DocdokuPlmApi.PartApi publishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/publish Publish part revision
DocdokuPlmApi.PartApi releasePartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/release Release part revision
DocdokuPlmApi.PartApi removeFile DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Remove file from part iteration
DocdokuPlmApi.PartApi removePartTags DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags/{tagName} Delete tags from part revision
DocdokuPlmApi.PartApi renameAttachedFileInPartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Rename attached file from part iteration
DocdokuPlmApi.PartApi retryConversion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Retry part iteration conversion
DocdokuPlmApi.PartApi savePartTags PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Save part revision tags
DocdokuPlmApi.PartApi unPublishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/unpublish Un-publish part revision
DocdokuPlmApi.PartApi undoCheckOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/undocheckout Undo checkout part revision
DocdokuPlmApi.PartApi updatePartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration} Update part iteration
DocdokuPlmApi.PartApi updatePartRevisionACL PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/acl Update part revision ACL
DocdokuPlmApi.PartBinaryApi downloadDirectPartFile GET /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/{fileName} Download part file without a sub type
DocdokuPlmApi.PartBinaryApi downloadPartFile GET /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/{subType}/{fileName} Download part file with a sub type
DocdokuPlmApi.PartBinaryApi uploadAttachedFiles POST /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/attachedfiles Upload attached file
DocdokuPlmApi.PartBinaryApi uploadNativeCADFile POST /files/{workspaceId}/parts/{partNumber}/{version}/{iteration}/nativecad Upload CAD file
DocdokuPlmApi.PartEffectivitiesApi createEffectivity POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Create an Effectivity for a given PartRevision
DocdokuPlmApi.PartEffectivitiesApi deleteEffectivity DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities/{effectivityId} Delete effectivity from given part revision
DocdokuPlmApi.PartEffectivitiesApi getEffectivities GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Get effectivities of a given PartRevision
DocdokuPlmApi.PartTemplateBinaryApi downloadPartTemplateFile GET /files/{workspaceId}/part-templates/{templateId}/{fileName} Download part template file
DocdokuPlmApi.PartTemplateBinaryApi uploadPartTemplateFiles POST /files/{workspaceId}/part-templates/{templateId} Upload part template files
DocdokuPlmApi.PartTemplatesApi createPartMasterTemplate POST /workspaces/{workspaceId}/part-templates Crate a new part master template
DocdokuPlmApi.PartTemplatesApi deletePartMasterTemplate DELETE /workspaces/{workspaceId}/part-templates/{templateId} Delete part master template
DocdokuPlmApi.PartTemplatesApi generatePartMasterTemplateId GET /workspaces/{workspaceId}/part-templates/{templateId}/generate_id Generate part master template id
DocdokuPlmApi.PartTemplatesApi getPartMasterTemplate GET /workspaces/{workspaceId}/part-templates/{templateId} Get part master template
DocdokuPlmApi.PartTemplatesApi getPartMasterTemplates GET /workspaces/{workspaceId}/part-templates Get part master templates
DocdokuPlmApi.PartTemplatesApi removeAttachedFileFromPartTemplate DELETE /workspaces/{workspaceId}/part-templates/{templateId}/files/{fileName} Remove attached file from part master template
DocdokuPlmApi.PartTemplatesApi renameAttachedFileInPartTemplate PUT /workspaces/{workspaceId}/part-templates/{templateId}/files/{fileName} Rename attached file in part master template
DocdokuPlmApi.PartTemplatesApi updatePartMasterTemplate PUT /workspaces/{workspaceId}/part-templates/{templateId} Update part master template
DocdokuPlmApi.PartTemplatesApi updatePartMasterTemplateACL PUT /workspaces/{workspaceId}/part-templates/{templateId}/acl Update part master template ACL
DocdokuPlmApi.PartsApi addPartTag POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Add tags to part revision
DocdokuPlmApi.PartsApi checkIn PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkin Checkin part revision
DocdokuPlmApi.PartsApi checkOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkout Checkout part revision
DocdokuPlmApi.PartsApi createEffectivity POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Create an Effectivity for a given PartRevision
DocdokuPlmApi.PartsApi createNewPart POST /workspaces/{workspaceId}/parts Create a new part master and its first revision
DocdokuPlmApi.PartsApi createNewPartVersion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/newVersion Create new part version
DocdokuPlmApi.PartsApi createSharedPart POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/share Create a new shared part from part revision
DocdokuPlmApi.PartsApi deleteEffectivity DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities/{effectivityId} Delete effectivity from given part revision
DocdokuPlmApi.PartsApi deleteImport DELETE /workspaces/{workspaceId}/parts/import/{importId} Delete import
DocdokuPlmApi.PartsApi deletePartRevision DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Delete part revision
DocdokuPlmApi.PartsApi deleteQuery DELETE /workspaces/{workspaceId}/parts/queries/{queryId} Delete custom query
DocdokuPlmApi.PartsApi exportCustomQuery POST /workspaces/{workspaceId}/parts/query-export Run and export a custom query
DocdokuPlmApi.PartsApi exportExistingQuery GET /workspaces/{workspaceId}/parts/queries/{queryId}/format/{export} Run and export an existing query
DocdokuPlmApi.PartsApi filterPartMasterInBaseline GET /workspaces/{workspaceId}/parts/{partNumber}/filter/{baselineId} Filter part master with in baseline : resolve part iteration
DocdokuPlmApi.PartsApi getAbortedWorkflowListInPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/aborted-workflows Get part revision's aborted workflow list
DocdokuPlmApi.PartsApi getBaselinesWherePartRevisionHasIterations GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/baselines Get product baselines where part revision is involved
DocdokuPlmApi.PartsApi getCheckedOutNumberOfItems GET /workspaces/{workspaceId}/parts/countCheckedOut Count checked out part revisions
DocdokuPlmApi.PartsApi getCheckedOutPartRevisions GET /workspaces/{workspaceId}/parts/checkedout Get checked out part revisions
DocdokuPlmApi.PartsApi getConversionStatus GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Get part iteration conversion status
DocdokuPlmApi.PartsApi getCustomQueries GET /workspaces/{workspaceId}/parts/queries Get custom queries in workspace
DocdokuPlmApi.PartsApi getEffectivities GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Get effectivities of a given PartRevision
DocdokuPlmApi.PartsApi getImport GET /workspaces/{workspaceId}/parts/import/{importId} Get import by id
DocdokuPlmApi.PartsApi getImportPreview POST /workspaces/{workspaceId}/parts/importPreview Get import preview
DocdokuPlmApi.PartsApi getImports GET /workspaces/{workspaceId}/parts/imports/{filename} Get imports currently running for given file
DocdokuPlmApi.PartsApi getInstancesUnderPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/instances Get instances under given part revision (latest checked-in view)
DocdokuPlmApi.PartsApi getLatestPartRevision GET /workspaces/{workspaceId}/parts/{partNumber}/latest-revision Get part master latest available revision
DocdokuPlmApi.PartsApi getPartRevision GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Get part revision
DocdokuPlmApi.PartsApi getPartRevisions GET /workspaces/{workspaceId}/parts Get part revisions in workspace
DocdokuPlmApi.PartsApi getPartRevisionsByTag GET /workspaces/{workspaceId}/parts/tags/{tagId} Get part revisions in workspace
DocdokuPlmApi.PartsApi getProductInstanceMasters GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-product-instance-masters Get product instance where part revision is in use
DocdokuPlmApi.PartsApi getTotalNumberOfParts GET /workspaces/{workspaceId}/parts/count Count part revisions in workspace
DocdokuPlmApi.PartsApi getUsedByAsComponent GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-component Get part revisions where given part revision is used as a component
DocdokuPlmApi.PartsApi getUsedByAsSubstitute GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-substitute Get part revisions where given part revision is used as a substitute
DocdokuPlmApi.PartsApi importPartAttributes POST /workspaces/{workspaceId}/parts/import Import part iteration attributes from file
DocdokuPlmApi.PartsApi markPartRevisionAsObsolete PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/obsolete Set part revision as obsolete
DocdokuPlmApi.PartsApi publishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/publish Publish part revision
DocdokuPlmApi.PartsApi releasePartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/release Release part revision
DocdokuPlmApi.PartsApi removeFile DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Remove file from part iteration
DocdokuPlmApi.PartsApi removePartTags DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags/{tagName} Delete tags from part revision
DocdokuPlmApi.PartsApi renameAttachedFileInPartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Rename attached file from part iteration
DocdokuPlmApi.PartsApi retryConversion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Retry part iteration conversion
DocdokuPlmApi.PartsApi runCustomQuery POST /workspaces/{workspaceId}/parts/queries Run custom query in workspace
DocdokuPlmApi.PartsApi savePartTags PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Save part revision tags
DocdokuPlmApi.PartsApi searchPartNumbers GET /workspaces/{workspaceId}/parts/numbers Search for available part numbers in given workspace
DocdokuPlmApi.PartsApi searchPartRevisions GET /workspaces/{workspaceId}/parts/search Search part revisions in workspace
DocdokuPlmApi.PartsApi searchPartsLastIterationWithReferenceOrName GET /workspaces/{workspaceId}/parts/parts_last_iter Search documents last iteration to link
DocdokuPlmApi.PartsApi unPublishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/unpublish Un-publish part revision
DocdokuPlmApi.PartsApi undoCheckOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/undocheckout Undo checkout part revision
DocdokuPlmApi.PartsApi updatePartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration} Update part iteration
DocdokuPlmApi.PartsApi updatePartRevisionACL PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/acl Update part revision ACL
DocdokuPlmApi.PlatformsApi getPlatformHealthStatus GET /platform/health Get platform health status
DocdokuPlmApi.ProductBaselineApi createProductBaseline POST /workspaces/{workspaceId}/product-baselines Create a new product-baseline
DocdokuPlmApi.ProductBaselineApi deleteProductBaseline DELETE /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId} Delete product-baseline
DocdokuPlmApi.ProductBaselineApi getAllProductBaselines GET /workspaces/{workspaceId}/product-baselines Get product-baselines in given workspace
DocdokuPlmApi.ProductBaselineApi getPathToPathLinkInProductBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get product-baseline's path-to-path links for given source and target
DocdokuPlmApi.ProductBaselineApi getPathToPathLinkTypesInBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/path-to-path-links-types Get product-baseline's path-to-path links
DocdokuPlmApi.ProductBaselineApi getProductBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId} Get product-baseline by id
DocdokuPlmApi.ProductBaselineApi getProductBaselineParts GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/parts Get product-baseline's baselined parts
DocdokuPlmApi.ProductBaselineApi getProductBaselinesForProduct GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines Get product-baseline with given configuration item
DocdokuPlmApi.ProductConfigurationsApi createConfiguration POST /workspaces/{workspaceId}/product-configurations Create a new product configuration
DocdokuPlmApi.ProductConfigurationsApi deleteProductConfiguration DELETE /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId} Delete product configuration
DocdokuPlmApi.ProductConfigurationsApi getAllConfigurations GET /workspaces/{workspaceId}/product-configurations Get all product configurations in workspace
DocdokuPlmApi.ProductConfigurationsApi getConfiguration GET /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId} Get product configuration by id
DocdokuPlmApi.ProductConfigurationsApi getConfigurationsForProduct GET /workspaces/{workspaceId}/product-configurations/{ciId}/configurations Get all product configurations for given product
DocdokuPlmApi.ProductConfigurationsApi updateConfigurationACL PUT /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId}/acl Update product configuration ACL
DocdokuPlmApi.ProductInstanceBinaryApi downloadFileFromPathData GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/{fileName} Download path data file
DocdokuPlmApi.ProductInstanceBinaryApi downloadFileFromPathDataIteration GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/iterations/{iteration}/{fileName} Download path data iteration file
DocdokuPlmApi.ProductInstanceBinaryApi downloadFileFromProductInstance GET /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/iterations/{iteration}/{fileName} Download product instance file
DocdokuPlmApi.ProductInstanceBinaryApi uploadFilesToPathDataIteration POST /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/pathdata/{pathDataId}/iterations/{iteration} Upload path data iteration file
DocdokuPlmApi.ProductInstanceBinaryApi uploadFilesToProductInstanceIteration POST /files/{workspaceId}/product-instances/{serialNumber}/{ciId}/iterations/{iteration} Upload product instance files
DocdokuPlmApi.ProductInstancesApi addNewPathDataIteration POST /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId} Add new path-data iteration
DocdokuPlmApi.ProductInstancesApi createPathDataMaster POST /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{path}/new Create a new path-data in product-instance last iteration
DocdokuPlmApi.ProductInstancesApi createProductInstanceMaster POST /workspaces/{workspaceId}/product-instances Create a new product-instance
DocdokuPlmApi.ProductInstancesApi deleteAttachedFileInPathData DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration}/files/{fileName} Delete product-instance's attached file
DocdokuPlmApi.ProductInstancesApi deletePathData DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId} Delete product-instance's path-data
DocdokuPlmApi.ProductInstancesApi deleteProductInstanceMaster DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber} Delete product-instance
DocdokuPlmApi.ProductInstancesApi getAllProductInstances GET /workspaces/{workspaceId}/product-instances Get product instances in given workspace
DocdokuPlmApi.ProductInstancesApi getPartFromPathLink GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/link-path-part/{pathPart} Get part from path-to-path link
DocdokuPlmApi.ProductInstancesApi getPathData GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{path} Get product-instance's last iteration path-data
DocdokuPlmApi.ProductInstancesApi getPathToPathLink GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links/{pathToPathLinkId} Get path-to-path link
DocdokuPlmApi.ProductInstancesApi getPathToPathLinkTypesInProductInstance GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links-types Get path-to-path link types
DocdokuPlmApi.ProductInstancesApi getPathToPathLinks GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links Get path-to-path links
DocdokuPlmApi.ProductInstancesApi getPathToPathLinksForGivenSourceAndTarget GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get path-to-path link for given source and target
DocdokuPlmApi.ProductInstancesApi getProductInstance GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber} Get product-instance by serial number
DocdokuPlmApi.ProductInstancesApi getProductInstanceIteration GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration} Get product-instance's iteration
DocdokuPlmApi.ProductInstancesApi getProductInstanceIterations GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations Get product-instance's iterations
DocdokuPlmApi.ProductInstancesApi getProductInstances GET /workspaces/{workspaceId}/product-instances/{ciId}/instances Get product-instance with given configuration item
DocdokuPlmApi.ProductInstancesApi getRootPathToPathLinks GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links-roots/{type} Get root path-to-path links
DocdokuPlmApi.ProductInstancesApi importProductInstanceAttributes POST /workspaces/{workspaceId}/product-instances/import Import attribute into product-instance
DocdokuPlmApi.ProductInstancesApi rebaseProductInstance PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/rebase Rebase product-instance with given baseline
DocdokuPlmApi.ProductInstancesApi removeAttachedFileFromProductInstance DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration}/files/{fileName} Remove attached file from product-instance
DocdokuPlmApi.ProductInstancesApi renameAttachedFileInPathData PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration}/files/{fileName} Rename product-instance's attached file
DocdokuPlmApi.ProductInstancesApi renameAttachedFileInProductInstance PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration}/files/{fileName} Rename attached file in product instance iteration
DocdokuPlmApi.ProductInstancesApi updatePathData PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration} Update path-data
DocdokuPlmApi.ProductInstancesApi updateProductInstanceACL PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/acl Update product-instance's ACL
DocdokuPlmApi.ProductInstancesApi updateProductInstanceMaster PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration} Update product-instance
DocdokuPlmApi.ProductsApi cascadeCheckin PUT /workspaces/{workspaceId}/products/{ciId}/cascade-checkin Cascade part revision check in with given config spec and path
DocdokuPlmApi.ProductsApi cascadeCheckout PUT /workspaces/{workspaceId}/products/{ciId}/cascade-checkout Cascade part revision check out with given config spec and path
DocdokuPlmApi.ProductsApi cascadeUndoCheckOut PUT /workspaces/{workspaceId}/products/{ciId}/cascade-undocheckout Cascade part revision undo check out with given config spec and path
DocdokuPlmApi.ProductsApi createConfigurationItem POST /workspaces/{workspaceId}/products Create a new configuration item
DocdokuPlmApi.ProductsApi createLayer POST /workspaces/{workspaceId}/products/{ciId}/layers Create a new layer for given product
DocdokuPlmApi.ProductsApi createMarker POST /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Create a new marker in a given layer
DocdokuPlmApi.ProductsApi createPathToPathLink POST /workspaces/{workspaceId}/products/{ciId}/path-to-path-links Create a new path-to-path link
DocdokuPlmApi.ProductsApi decodePath GET /workspaces/{workspaceId}/products/{ciId}/decode-path/{path} Decode given path as string
DocdokuPlmApi.ProductsApi deleteConfigurationItem DELETE /workspaces/{workspaceId}/products/{ciId} Delete configuration item
DocdokuPlmApi.ProductsApi deleteLayer DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Delete layer
DocdokuPlmApi.ProductsApi deleteMarker DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers/{markerId} Delete marker
DocdokuPlmApi.ProductsApi deletePathToPathLink DELETE /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/{pathToPathLinkId} Delete path-to-path link
DocdokuPlmApi.ProductsApi exportProductFiles GET /workspaces/{workspaceId}/products/{ciId}/export-files Export files from configuration item with given config spec
DocdokuPlmApi.ProductsApi filterPart GET /workspaces/{workspaceId}/products/{ciId}/bom Filter part with given config spec and path
DocdokuPlmApi.ProductsApi filterProductStructure GET /workspaces/{workspaceId}/products/{ciId}/filter Filter product structure
DocdokuPlmApi.ProductsApi getBaselineCreationPathChoices GET /workspaces/{workspaceId}/products/{ciId}/path-choices Get baseline creation path choices
DocdokuPlmApi.ProductsApi getBaselineCreationVersionsChoices GET /workspaces/{workspaceId}/products/{ciId}/versions-choices Get baseline creation version choices
DocdokuPlmApi.ProductsApi getConfigurationItem GET /workspaces/{workspaceId}/products/{ciId} Get configuration item by id
DocdokuPlmApi.ProductsApi getConfigurationItems GET /workspaces/{workspaceId}/products Get configuration items in given workspace
DocdokuPlmApi.ProductsApi getDocumentLinksForGivenPartIteration GET /workspaces/{workspaceId}/products/{ciId}/document-links/{partNumber}-{partVersion}-{partIteration}/{configSpec} Get document links for given part iteration
DocdokuPlmApi.ProductsApi getFilteredInstances GET /workspaces/{workspaceId}/products/{ciId}/instances Get instances under given path and config spec
DocdokuPlmApi.ProductsApi getInstancesForMultiplePath POST /workspaces/{workspaceId}/products/{ciId}/instances Get instances for multiple paths
DocdokuPlmApi.ProductsApi getLastRelease GET /workspaces/{workspaceId}/products/{ciId}/releases/last Get last release of part
DocdokuPlmApi.ProductsApi getLayersInProduct GET /workspaces/{workspaceId}/products/{ciId}/layers Get layers for given product
DocdokuPlmApi.ProductsApi getMarkersInLayer GET /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Get markers of a given layer
DocdokuPlmApi.ProductsApi getPathToPathLinkInProduct GET /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get path-to-path links from source and target
DocdokuPlmApi.ProductsApi getPathToPathLinkTypesInProduct GET /workspaces/{workspaceId}/products/{ciId}/path-to-path-links-types Get path-to-path links types
DocdokuPlmApi.ProductsApi searchConfigurationItemId GET /workspaces/{workspaceId}/products/numbers Search configuration items by reference
DocdokuPlmApi.ProductsApi searchPaths GET /workspaces/{workspaceId}/products/{ciId}/paths Search paths with part reference or name
DocdokuPlmApi.ProductsApi updateLayer PUT /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Update layer
DocdokuPlmApi.ProductsApi updatePathToPathLink PUT /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/{pathToPathLinkId} Update path-to-path link
DocdokuPlmApi.RequestsApi addTagsToChangeRequest POST /workspaces/{workspaceId}/changes/requests/{requestId}/tags Attach a new tag to a change request
DocdokuPlmApi.RequestsApi createRequest POST /workspaces/{workspaceId}/changes/requests Create request
DocdokuPlmApi.RequestsApi getRequest GET /workspaces/{workspaceId}/changes/requests/{requestId} Get change request by id
DocdokuPlmApi.RequestsApi getRequests GET /workspaces/{workspaceId}/changes/requests Get requests for given parameters
DocdokuPlmApi.RequestsApi removeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId} Delete change request
DocdokuPlmApi.RequestsApi removeTagFromChangeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId}/tags/{tagName} Delete tag attached to a change request
DocdokuPlmApi.RequestsApi saveAffectedIssues PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-issues Attach issue to a change request
DocdokuPlmApi.RequestsApi saveChangeRequestAffectedDocuments PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-documents Attach document to a change request
DocdokuPlmApi.RequestsApi saveChangeRequestAffectedParts PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-parts Attach part to a change request
DocdokuPlmApi.RequestsApi saveChangeRequestTags PUT /workspaces/{workspaceId}/changes/requests/{requestId}/tags Update tag attached to a change request
DocdokuPlmApi.RequestsApi searchRequestsByName GET /workspaces/{workspaceId}/changes/requests/link Search request with given name
DocdokuPlmApi.RequestsApi updateChangeRequestACL PUT /workspaces/{workspaceId}/changes/requests/{requestId}/acl Update ACL of a change request
DocdokuPlmApi.RequestsApi updateRequest PUT /workspaces/{workspaceId}/changes/requests/{requestId} Update change request
DocdokuPlmApi.RolesApi createRole POST /workspaces/{workspaceId}/roles Create a new role
DocdokuPlmApi.RolesApi deleteRole DELETE /workspaces/{workspaceId}/roles/{roleName} Delete a role
DocdokuPlmApi.RolesApi getRolesInUseInWorkspace GET /workspaces/{workspaceId}/roles/inuse Get roles in use in given workspace
DocdokuPlmApi.RolesApi getRolesInWorkspace GET /workspaces/{workspaceId}/roles Get roles in given workspace
DocdokuPlmApi.RolesApi updateRole PUT /workspaces/{workspaceId}/roles/{roleName} Update a role
DocdokuPlmApi.SharedApi getDocumentWithSharedEntity GET /shared/{uuid}/documents Get shared document from resource token
DocdokuPlmApi.SharedApi getPartWithSharedEntity GET /shared/{uuid}/parts Get shared part from resource token
DocdokuPlmApi.SharedApi getPublicSharedDocumentRevision GET /shared/{workspaceId}/documents/{documentId}-{documentVersion} Get public shared document revision
DocdokuPlmApi.SharedApi getPublicSharedPartRevision GET /shared/{workspaceId}/parts/{partNumber}-{partVersion} Get public shared part revision
DocdokuPlmApi.TagsApi createDocumentMasterInRootFolderWithTag POST /workspaces/{workspaceId}/tags/{tagId}/documents Create a new document master and its first revision with given tag
DocdokuPlmApi.TagsApi createTag POST /workspaces/{workspaceId}/tags Create a new tag in workspace
DocdokuPlmApi.TagsApi createTags POST /workspaces/{workspaceId}/tags/multiple Create new tags in workspace
DocdokuPlmApi.TagsApi deleteTag DELETE /workspaces/{workspaceId}/tags/{tagId} Delete a tag in workspace
DocdokuPlmApi.TagsApi getDocumentsWithGivenTagIdAndWorkspaceId GET /workspaces/{workspaceId}/tags/{tagId}/documents Get document revisions from given tag id
DocdokuPlmApi.TagsApi getTagsInWorkspace GET /workspaces/{workspaceId}/tags Get tags in given workspace
DocdokuPlmApi.TasksApi getAssignedTasksForGivenUser GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/assigned Get assigned tasks for given user
DocdokuPlmApi.TasksApi getDocumentsWhereGivenUserHasAssignedTasks GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/documents Get document revisions where user has assigned tasks
DocdokuPlmApi.TasksApi getPartsWhereGivenUserHasAssignedTasks GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/parts Get part revisions where user has assigned tasks
DocdokuPlmApi.TasksApi getTask GET /workspaces/{workspaceId}/tasks/{taskId} Get task by id
DocdokuPlmApi.TasksApi processTask PUT /workspaces/{workspaceId}/tasks/{taskId}/process Approve or reject task on a document or part revision
DocdokuPlmApi.TimezoneApi getTimeZones GET /timezones Get supported timezones
DocdokuPlmApi.UsersApi deleteUserSubscription DELETE /workspaces/{workspaceId}/users/{login}/tag-subscriptions/{tagName} Delete tag subscription of user
DocdokuPlmApi.UsersApi getAdminInWorkspace GET /workspaces/{workspaceId}/users/admin Get admin for workspace
DocdokuPlmApi.UsersApi getTagSubscriptionsForUser GET /workspaces/{workspaceId}/users/{login}/tag-subscriptions Get tag subscriptions of user
DocdokuPlmApi.UsersApi getUsersInWorkspace GET /workspaces/{workspaceId}/users Get users in workspace
DocdokuPlmApi.UsersApi updateUserSubscription PUT /workspaces/{workspaceId}/users/{login}/tag-subscriptions/{tagName} Update or create tag subscription of user
DocdokuPlmApi.UsersApi whoAmI GET /workspaces/{workspaceId}/users/me Get authenticated user details
DocdokuPlmApi.WebhookApi createWebhook POST /workspaces/{workspaceId}/webhooks Create a new webhook in given workspace
DocdokuPlmApi.WebhookApi deleteWebhook DELETE /workspaces/{workspaceId}/webhooks/{webhookId} Delete a webhook
DocdokuPlmApi.WebhookApi getWebhook GET /workspaces/{workspaceId}/webhooks/{webhookId} Get webhook by id
DocdokuPlmApi.WebhookApi getWebhooks GET /workspaces/{workspaceId}/webhooks Get webhooks in given workspace
DocdokuPlmApi.WebhookApi updateWebhook PUT /workspaces/{workspaceId}/webhooks/{webhookId} Update a webhook
DocdokuPlmApi.WorkflowModelsApi createWorkflowModel POST /workspaces/{workspaceId}/workflow-models Create a new workflow model
DocdokuPlmApi.WorkflowModelsApi delWorkflowModel DELETE /workspaces/{workspaceId}/workflow-models/{workflowModelId} Delete a workflow model
DocdokuPlmApi.WorkflowModelsApi getWorkflowModelInWorkspace GET /workspaces/{workspaceId}/workflow-models/{workflowModelId} Get workflow model by id
DocdokuPlmApi.WorkflowModelsApi getWorkflowModelsInWorkspace GET /workspaces/{workspaceId}/workflow-models Get workflow models in given workspace
DocdokuPlmApi.WorkflowModelsApi updateWorkflowModel PUT /workspaces/{workspaceId}/workflow-models/{workflowModelId} Update a workflow model
DocdokuPlmApi.WorkflowModelsApi updateWorkflowModelACL PUT /workspaces/{workspaceId}/workflow-models/{workflowModelId}/acl Update workflow model ACL
DocdokuPlmApi.WorkflowsApi getWorkflowAbortedWorkflowList GET /workspaces/{workspaceId}/workflow-instances/{workflowId}/aborted Get workflow's aborted workflow list
DocdokuPlmApi.WorkflowsApi getWorkflowInstance GET /workspaces/{workspaceId}/workflow-instances/{workflowId} Get instantiated workflow in workspace
DocdokuPlmApi.WorkspaceMembershipsApi getWorkspaceSpecificUserGroupMemberShips GET /workspaces/{workspaceId}/memberships/usergroups/me Get workspace's group membership for authenticated user
DocdokuPlmApi.WorkspaceMembershipsApi getWorkspaceSpecificUserMemberShips GET /workspaces/{workspaceId}/memberships/users/me Get workspace's user membership for authenticated user
DocdokuPlmApi.WorkspaceMembershipsApi getWorkspaceUserGroupMemberShips GET /workspaces/{workspaceId}/memberships/usergroups Get workspace's group membership for authenticated user
DocdokuPlmApi.WorkspaceMembershipsApi getWorkspaceUserMemberShips GET /workspaces/{workspaceId}/memberships/users Get workspace's user memberships
DocdokuPlmApi.WorkspaceWorkflowsApi createWorkspaceWorkflow POST /workspaces/{workspaceId}/workspace-workflows Instantiate a workspace workflow from given workflow model
DocdokuPlmApi.WorkspaceWorkflowsApi deleteWorkspaceWorkflow DELETE /workspaces/{workspaceId}/workspace-workflows/{workspaceWorkflowId} Delete a workspace workflow
DocdokuPlmApi.WorkspaceWorkflowsApi getWorkspaceWorkflow GET /workspaces/{workspaceId}/workspace-workflows/{workspaceWorkflowId} Get a workspace workflow by id
DocdokuPlmApi.WorkspaceWorkflowsApi getWorkspaceWorkflowList GET /workspaces/{workspaceId}/workspace-workflows Get workspace workflow list in given workspace
DocdokuPlmApi.WorkspacesApi acknowledgeNotification PUT /workspaces/{workspaceId}/notifications/{notificationId} Acknowledge a modification notification
DocdokuPlmApi.WorkspacesApi addDocTag POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Add tags to document revision
DocdokuPlmApi.WorkspacesApi addNewPathDataIteration POST /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId} Add new path-data iteration
DocdokuPlmApi.WorkspacesApi addPartTag POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Add tags to part revision
DocdokuPlmApi.WorkspacesApi addTagToChangeIssue POST /workspaces/{workspaceId}/changes/issues/{issueId}/tags Attached a new tag to a change issue
DocdokuPlmApi.WorkspacesApi addTagToChangeOrder POST /workspaces/{workspaceId}/changes/orders/{orderId}/tags Add new tag to order
DocdokuPlmApi.WorkspacesApi addTagsToChangeRequest POST /workspaces/{workspaceId}/changes/requests/{requestId}/tags Attach a new tag to a change request
DocdokuPlmApi.WorkspacesApi addUser PUT /workspaces/{workspaceId}/add-user Add a user to workspace
DocdokuPlmApi.WorkspacesApi cascadeCheckin PUT /workspaces/{workspaceId}/products/{ciId}/cascade-checkin Cascade part revision check in with given config spec and path
DocdokuPlmApi.WorkspacesApi cascadeCheckout PUT /workspaces/{workspaceId}/products/{ciId}/cascade-checkout Cascade part revision check out with given config spec and path
DocdokuPlmApi.WorkspacesApi cascadeUndoCheckOut PUT /workspaces/{workspaceId}/products/{ciId}/cascade-undocheckout Cascade part revision undo check out with given config spec and path
DocdokuPlmApi.WorkspacesApi checkIn PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkin Checkin part revision
DocdokuPlmApi.WorkspacesApi checkInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkin Checkin document revision
DocdokuPlmApi.WorkspacesApi checkOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/checkout Checkout part revision
DocdokuPlmApi.WorkspacesApi checkOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/checkout Checkout document revision
DocdokuPlmApi.WorkspacesApi countCheckedOutDocs GET /workspaces/{workspaceId}/documents/countCheckedOut Count checked out document revisions
DocdokuPlmApi.WorkspacesApi createConfiguration POST /workspaces/{workspaceId}/product-configurations Create a new product configuration
DocdokuPlmApi.WorkspacesApi createConfigurationItem POST /workspaces/{workspaceId}/products Create a new configuration item
DocdokuPlmApi.WorkspacesApi createDocumentBaseline POST /workspaces/{workspaceId}/document-baselines Create a new document baseline
DocdokuPlmApi.WorkspacesApi createDocumentMasterInFolder POST /workspaces/{workspaceId}/folders/{folderId}/documents Create a new document revision in given folder
DocdokuPlmApi.WorkspacesApi createDocumentMasterInRootFolderWithTag POST /workspaces/{workspaceId}/tags/{tagId}/documents Create a new document master and its first revision with given tag
DocdokuPlmApi.WorkspacesApi createDocumentMasterTemplate POST /workspaces/{workspaceId}/document-templates Create a new document template
DocdokuPlmApi.WorkspacesApi createEffectivity POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Create an Effectivity for a given PartRevision
DocdokuPlmApi.WorkspacesApi createGroup POST /workspaces/{workspaceId}/user-group Create a new user group
DocdokuPlmApi.WorkspacesApi createIssue POST /workspaces/{workspaceId}/changes/issues Create a new change issue
DocdokuPlmApi.WorkspacesApi createLOV POST /workspaces/{workspaceId}/lov Create a new ListOfValues
DocdokuPlmApi.WorkspacesApi createLayer POST /workspaces/{workspaceId}/products/{ciId}/layers Create a new layer for given product
DocdokuPlmApi.WorkspacesApi createMarker POST /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Create a new marker in a given layer
DocdokuPlmApi.WorkspacesApi createMilestone POST /workspaces/{workspaceId}/changes/milestones Create a new milestone
DocdokuPlmApi.WorkspacesApi createNewDocumentVersion PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/newVersion Create a new version of the document revision
DocdokuPlmApi.WorkspacesApi createNewPart POST /workspaces/{workspaceId}/parts Create a new part master and its first revision
DocdokuPlmApi.WorkspacesApi createNewPartVersion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/newVersion Create new part version
DocdokuPlmApi.WorkspacesApi createOrder POST /workspaces/{workspaceId}/changes/orders Create order
DocdokuPlmApi.WorkspacesApi createPartMasterTemplate POST /workspaces/{workspaceId}/part-templates Crate a new part master template
DocdokuPlmApi.WorkspacesApi createPathDataMaster POST /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{path}/new Create a new path-data in product-instance last iteration
DocdokuPlmApi.WorkspacesApi createPathToPathLink POST /workspaces/{workspaceId}/products/{ciId}/path-to-path-links Create a new path-to-path link
DocdokuPlmApi.WorkspacesApi createProductBaseline POST /workspaces/{workspaceId}/product-baselines Create a new product-baseline
DocdokuPlmApi.WorkspacesApi createProductInstanceMaster POST /workspaces/{workspaceId}/product-instances Create a new product-instance
DocdokuPlmApi.WorkspacesApi createRequest POST /workspaces/{workspaceId}/changes/requests Create request
DocdokuPlmApi.WorkspacesApi createRole POST /workspaces/{workspaceId}/roles Create a new role
DocdokuPlmApi.WorkspacesApi createRootFolder POST /workspaces/{workspaceId}/folders Create root folder
DocdokuPlmApi.WorkspacesApi createSharedDocument POST /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/share Create a shared document for given document revision
DocdokuPlmApi.WorkspacesApi createSharedPart POST /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/share Create a new shared part from part revision
DocdokuPlmApi.WorkspacesApi createSubFolder POST /workspaces/{workspaceId}/folders/{parentFolderPath}/folders Create a sub folder in a given folder
DocdokuPlmApi.WorkspacesApi createTag POST /workspaces/{workspaceId}/tags Create a new tag in workspace
DocdokuPlmApi.WorkspacesApi createTags POST /workspaces/{workspaceId}/tags/multiple Create new tags in workspace
DocdokuPlmApi.WorkspacesApi createWebhook POST /workspaces/{workspaceId}/webhooks Create a new webhook in given workspace
DocdokuPlmApi.WorkspacesApi createWorkflowModel POST /workspaces/{workspaceId}/workflow-models Create a new workflow model
DocdokuPlmApi.WorkspacesApi createWorkspace POST /workspaces Create a new workspace
DocdokuPlmApi.WorkspacesApi createWorkspaceWorkflow POST /workspaces/{workspaceId}/workspace-workflows Instantiate a workspace workflow from given workflow model
DocdokuPlmApi.WorkspacesApi decodePath GET /workspaces/{workspaceId}/products/{ciId}/decode-path/{path} Decode given path as string
DocdokuPlmApi.WorkspacesApi delWorkflowModel DELETE /workspaces/{workspaceId}/workflow-models/{workflowModelId} Delete a workflow model
DocdokuPlmApi.WorkspacesApi deleteAttachedFileInPathData DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration}/files/{fileName} Delete product-instance's attached file
DocdokuPlmApi.WorkspacesApi deleteBaseline DELETE /workspaces/{workspaceId}/document-baselines/{baselineId} Delete a document baseline
DocdokuPlmApi.WorkspacesApi deleteConfigurationItem DELETE /workspaces/{workspaceId}/products/{ciId} Delete configuration item
DocdokuPlmApi.WorkspacesApi deleteDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Delete the document revision
DocdokuPlmApi.WorkspacesApi deleteDocumentMasterTemplate DELETE /workspaces/{workspaceId}/document-templates/{templateId} Delete document template
DocdokuPlmApi.WorkspacesApi deleteEffectivity DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities/{effectivityId} Delete effectivity from given part revision
DocdokuPlmApi.WorkspacesApi deleteImport DELETE /workspaces/{workspaceId}/parts/import/{importId} Delete import
DocdokuPlmApi.WorkspacesApi deleteLOV DELETE /workspaces/{workspaceId}/lov/{name} Delete a ListOfValues
DocdokuPlmApi.WorkspacesApi deleteLayer DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Delete layer
DocdokuPlmApi.WorkspacesApi deleteMarker DELETE /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers/{markerId} Delete marker
DocdokuPlmApi.WorkspacesApi deletePartMasterTemplate DELETE /workspaces/{workspaceId}/part-templates/{templateId} Delete part master template
DocdokuPlmApi.WorkspacesApi deletePartRevision DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Delete part revision
DocdokuPlmApi.WorkspacesApi deletePathData DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId} Delete product-instance's path-data
DocdokuPlmApi.WorkspacesApi deletePathToPathLink DELETE /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/{pathToPathLinkId} Delete path-to-path link
DocdokuPlmApi.WorkspacesApi deleteProductBaseline DELETE /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId} Delete product-baseline
DocdokuPlmApi.WorkspacesApi deleteProductConfiguration DELETE /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId} Delete product configuration
DocdokuPlmApi.WorkspacesApi deleteProductInstanceMaster DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber} Delete product-instance
DocdokuPlmApi.WorkspacesApi deleteQuery DELETE /workspaces/{workspaceId}/parts/queries/{queryId} Delete custom query
DocdokuPlmApi.WorkspacesApi deleteRole DELETE /workspaces/{workspaceId}/roles/{roleName} Delete a role
DocdokuPlmApi.WorkspacesApi deleteRootFolder DELETE /workspaces/{workspaceId}/folders/{folderId} Delete root folder
DocdokuPlmApi.WorkspacesApi deleteTag DELETE /workspaces/{workspaceId}/tags/{tagId} Delete a tag in workspace
DocdokuPlmApi.WorkspacesApi deleteUserGroupSubscription DELETE /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions/{tagName} Delete tag subscription of given user group
DocdokuPlmApi.WorkspacesApi deleteUserSubscription DELETE /workspaces/{workspaceId}/users/{login}/tag-subscriptions/{tagName} Delete tag subscription of user
DocdokuPlmApi.WorkspacesApi deleteWebhook DELETE /workspaces/{workspaceId}/webhooks/{webhookId} Delete a webhook
DocdokuPlmApi.WorkspacesApi deleteWorkspace DELETE /workspaces/{workspaceId} Delete a workspace
DocdokuPlmApi.WorkspacesApi deleteWorkspaceWorkflow DELETE /workspaces/{workspaceId}/workspace-workflows/{workspaceWorkflowId} Delete a workspace workflow
DocdokuPlmApi.WorkspacesApi disableGroup PUT /workspaces/{workspaceId}/disable-group Disable user group in workspace
DocdokuPlmApi.WorkspacesApi disableUser PUT /workspaces/{workspaceId}/disable-user Disable user in workspace
DocdokuPlmApi.WorkspacesApi enableGroup PUT /workspaces/{workspaceId}/enable-group Enable user group in workspace
DocdokuPlmApi.WorkspacesApi enableUser PUT /workspaces/{workspaceId}/enable-user Enable user in workspace
DocdokuPlmApi.WorkspacesApi exportCustomQuery POST /workspaces/{workspaceId}/parts/query-export Run and export a custom query
DocdokuPlmApi.WorkspacesApi exportDocumentFiles GET /workspaces/{workspaceId}/document-baselines/{baselineId}/export-files Export document baseline's files
DocdokuPlmApi.WorkspacesApi exportExistingQuery GET /workspaces/{workspaceId}/parts/queries/{queryId}/format/{export} Run and export an existing query
DocdokuPlmApi.WorkspacesApi exportProductFiles GET /workspaces/{workspaceId}/products/{ciId}/export-files Export files from configuration item with given config spec
DocdokuPlmApi.WorkspacesApi filterPart GET /workspaces/{workspaceId}/products/{ciId}/bom Filter part with given config spec and path
DocdokuPlmApi.WorkspacesApi filterPartMasterInBaseline GET /workspaces/{workspaceId}/parts/{partNumber}/filter/{baselineId} Filter part master with in baseline : resolve part iteration
DocdokuPlmApi.WorkspacesApi filterProductStructure GET /workspaces/{workspaceId}/products/{ciId}/filter Filter product structure
DocdokuPlmApi.WorkspacesApi generateDocumentMasterId GET /workspaces/{workspaceId}/document-templates/{templateId}/generate_id Generate document template id
DocdokuPlmApi.WorkspacesApi generatePartMasterTemplateId GET /workspaces/{workspaceId}/part-templates/{templateId}/generate_id Generate part master template id
DocdokuPlmApi.WorkspacesApi getAbortedWorkflowListInDocument GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/aborted-workflows Get document revision aborted workflow history
DocdokuPlmApi.WorkspacesApi getAbortedWorkflowListInPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/aborted-workflows Get part revision's aborted workflow list
DocdokuPlmApi.WorkspacesApi getAdminInWorkspace GET /workspaces/{workspaceId}/users/admin Get admin for workspace
DocdokuPlmApi.WorkspacesApi getAllConfigurations GET /workspaces/{workspaceId}/product-configurations Get all product configurations in workspace
DocdokuPlmApi.WorkspacesApi getAllProductBaselines GET /workspaces/{workspaceId}/product-baselines Get product-baselines in given workspace
DocdokuPlmApi.WorkspacesApi getAllProductInstances GET /workspaces/{workspaceId}/product-instances Get product instances in given workspace
DocdokuPlmApi.WorkspacesApi getAssignedTasksForGivenUser GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/assigned Get assigned tasks for given user
DocdokuPlmApi.WorkspacesApi getBaseline GET /workspaces/{workspaceId}/document-baselines/{baselineId} Get document baseline by id
DocdokuPlmApi.WorkspacesApi getBaselineCreationPathChoices GET /workspaces/{workspaceId}/products/{ciId}/path-choices Get baseline creation path choices
DocdokuPlmApi.WorkspacesApi getBaselineCreationVersionsChoices GET /workspaces/{workspaceId}/products/{ciId}/versions-choices Get baseline creation version choices
DocdokuPlmApi.WorkspacesApi getBaselineLight GET /workspaces/{workspaceId}/document-baselines/{baselineId}-light Get document baseline in a light format
DocdokuPlmApi.WorkspacesApi getBaselinesWherePartRevisionHasIterations GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/baselines Get product baselines where part revision is involved
DocdokuPlmApi.WorkspacesApi getCheckedOutDocuments GET /workspaces/{workspaceId}/documents/checkedout Get checked out document revisions
DocdokuPlmApi.WorkspacesApi getCheckedOutDocumentsStats GET /workspaces/{workspaceId}/checked-out-documents-stats Get checked out documents stats for workspace
DocdokuPlmApi.WorkspacesApi getCheckedOutNumberOfItems GET /workspaces/{workspaceId}/parts/countCheckedOut Count checked out part revisions
DocdokuPlmApi.WorkspacesApi getCheckedOutPartRevisions GET /workspaces/{workspaceId}/parts/checkedout Get checked out part revisions
DocdokuPlmApi.WorkspacesApi getCheckedOutPartsStats GET /workspaces/{workspaceId}/checked-out-parts-stats Get checked out parts stats for workspace
DocdokuPlmApi.WorkspacesApi getConfiguration GET /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId} Get product configuration by id
DocdokuPlmApi.WorkspacesApi getConfigurationItem GET /workspaces/{workspaceId}/products/{ciId} Get configuration item by id
DocdokuPlmApi.WorkspacesApi getConfigurationItems GET /workspaces/{workspaceId}/products Get configuration items in given workspace
DocdokuPlmApi.WorkspacesApi getConfigurationsForProduct GET /workspaces/{workspaceId}/product-configurations/{ciId}/configurations Get all product configurations for given product
DocdokuPlmApi.WorkspacesApi getConversionStatus GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Get part iteration conversion status
DocdokuPlmApi.WorkspacesApi getCustomQueries GET /workspaces/{workspaceId}/parts/queries Get custom queries in workspace
DocdokuPlmApi.WorkspacesApi getDetailedWorkspacesForConnectedUser GET /workspaces/more Get detailed workspace list for authenticated user
DocdokuPlmApi.WorkspacesApi getDiskSpaceUsageStats GET /workspaces/{workspaceId}/disk-usage-stats Get disk usage stats for workspace
DocdokuPlmApi.WorkspacesApi getDocumentBaselines GET /workspaces/{workspaceId}/document-baselines Get document baselines
DocdokuPlmApi.WorkspacesApi getDocumentLinksForGivenPartIteration GET /workspaces/{workspaceId}/products/{ciId}/document-links/{partNumber}-{partVersion}-{partIteration}/{configSpec} Get document links for given part iteration
DocdokuPlmApi.WorkspacesApi getDocumentMasterTemplate GET /workspaces/{workspaceId}/document-templates/{templateId} Get document template by id
DocdokuPlmApi.WorkspacesApi getDocumentMasterTemplates GET /workspaces/{workspaceId}/document-templates Get document templates
DocdokuPlmApi.WorkspacesApi getDocumentRevision GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion} Get document revision
DocdokuPlmApi.WorkspacesApi getDocumentsInWorkspace GET /workspaces/{workspaceId}/documents Get document revisions in workspace
DocdokuPlmApi.WorkspacesApi getDocumentsInWorkspaceCount GET /workspaces/{workspaceId}/documents/count Count document revisions
DocdokuPlmApi.WorkspacesApi getDocumentsWhereGivenUserHasAssignedTasks GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/documents Get document revisions where user has assigned tasks
DocdokuPlmApi.WorkspacesApi getDocumentsWithGivenFolderIdAndWorkspaceId GET /workspaces/{workspaceId}/folders/{folderId}/documents Get document revisions in given folder
DocdokuPlmApi.WorkspacesApi getDocumentsWithGivenTagIdAndWorkspaceId GET /workspaces/{workspaceId}/tags/{tagId}/documents Get document revisions from given tag id
DocdokuPlmApi.WorkspacesApi getEffectivities GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/effectivities Get effectivities of a given PartRevision
DocdokuPlmApi.WorkspacesApi getEffectivity GET /workspaces/{workspaceId}/effectivities/{effectivityId} Get an effectivity from its ID
DocdokuPlmApi.WorkspacesApi getFilteredInstances GET /workspaces/{workspaceId}/products/{ciId}/instances Get instances under given path and config spec
DocdokuPlmApi.WorkspacesApi getGroups GET /workspaces/{workspaceId}/groups Get user groups in given workspace
DocdokuPlmApi.WorkspacesApi getImport GET /workspaces/{workspaceId}/parts/import/{importId} Get import by id
DocdokuPlmApi.WorkspacesApi getImportPreview POST /workspaces/{workspaceId}/parts/importPreview Get import preview
DocdokuPlmApi.WorkspacesApi getImports GET /workspaces/{workspaceId}/parts/imports/{filename} Get imports currently running for given file
DocdokuPlmApi.WorkspacesApi getInstancesForMultiplePath POST /workspaces/{workspaceId}/products/{ciId}/instances Get instances for multiple paths
DocdokuPlmApi.WorkspacesApi getInstancesUnderPart GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/instances Get instances under given part revision (latest checked-in view)
DocdokuPlmApi.WorkspacesApi getInverseDocumentLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-document-link Get inverse document revisions links
DocdokuPlmApi.WorkspacesApi getInversePartsLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-part-link Get inverse part revisions links
DocdokuPlmApi.WorkspacesApi getInversePathDataLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-path-data-link Get inverse path data links
DocdokuPlmApi.WorkspacesApi getInverseProductInstancesLinks GET /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/{iteration}/inverse-product-instances-link Get inverse product instances links
DocdokuPlmApi.WorkspacesApi getIssue GET /workspaces/{workspaceId}/changes/issues/{issueId} Get change issue with given id
DocdokuPlmApi.WorkspacesApi getIssues GET /workspaces/{workspaceId}/changes/issues Get change issues for given parameters
DocdokuPlmApi.WorkspacesApi getLOV GET /workspaces/{workspaceId}/lov/{name} Get a ListOfValues from the given parameters
DocdokuPlmApi.WorkspacesApi getLOVs GET /workspaces/{workspaceId}/lov Get a list of ListOfValues for given parameters
DocdokuPlmApi.WorkspacesApi getLastRelease GET /workspaces/{workspaceId}/products/{ciId}/releases/last Get last release of part
DocdokuPlmApi.WorkspacesApi getLatestPartRevision GET /workspaces/{workspaceId}/parts/{partNumber}/latest-revision Get part master latest available revision
DocdokuPlmApi.WorkspacesApi getLayersInProduct GET /workspaces/{workspaceId}/products/{ciId}/layers Get layers for given product
DocdokuPlmApi.WorkspacesApi getMarkersInLayer GET /workspaces/{workspaceId}/products/{ciId}/layers/{layerId}/markers Get markers of a given layer
DocdokuPlmApi.WorkspacesApi getMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId} Get a milestone by id
DocdokuPlmApi.WorkspacesApi getMilestones GET /workspaces/{workspaceId}/changes/milestones Get milestones for given parameters
DocdokuPlmApi.WorkspacesApi getOrder GET /workspaces/{workspaceId}/changes/orders/{orderId} Get order
DocdokuPlmApi.WorkspacesApi getOrders GET /workspaces/{workspaceId}/changes/orders Get orders for given parameters
DocdokuPlmApi.WorkspacesApi getOrdersByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/orders Get change orders for a given milestone
DocdokuPlmApi.WorkspacesApi getPartFromPathLink GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/link-path-part/{pathPart} Get part from path-to-path link
DocdokuPlmApi.WorkspacesApi getPartMasterTemplate GET /workspaces/{workspaceId}/part-templates/{templateId} Get part master template
DocdokuPlmApi.WorkspacesApi getPartMasterTemplates GET /workspaces/{workspaceId}/part-templates Get part master templates
DocdokuPlmApi.WorkspacesApi getPartRevision GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion} Get part revision
DocdokuPlmApi.WorkspacesApi getPartRevisions GET /workspaces/{workspaceId}/parts Get part revisions in workspace
DocdokuPlmApi.WorkspacesApi getPartRevisionsByTag GET /workspaces/{workspaceId}/parts/tags/{tagId} Get part revisions in workspace
DocdokuPlmApi.WorkspacesApi getPartsWhereGivenUserHasAssignedTasks GET /workspaces/{workspaceId}/tasks/{assignedUserLogin}/parts Get part revisions where user has assigned tasks
DocdokuPlmApi.WorkspacesApi getPathData GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{path} Get product-instance's last iteration path-data
DocdokuPlmApi.WorkspacesApi getPathToPathLink GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links/{pathToPathLinkId} Get path-to-path link
DocdokuPlmApi.WorkspacesApi getPathToPathLinkInProduct GET /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get path-to-path links from source and target
DocdokuPlmApi.WorkspacesApi getPathToPathLinkInProductBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get product-baseline's path-to-path links for given source and target
DocdokuPlmApi.WorkspacesApi getPathToPathLinkTypesInBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/path-to-path-links-types Get product-baseline's path-to-path links
DocdokuPlmApi.WorkspacesApi getPathToPathLinkTypesInProduct GET /workspaces/{workspaceId}/products/{ciId}/path-to-path-links-types Get path-to-path links types
DocdokuPlmApi.WorkspacesApi getPathToPathLinkTypesInProductInstance GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links-types Get path-to-path link types
DocdokuPlmApi.WorkspacesApi getPathToPathLinks GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links Get path-to-path links
DocdokuPlmApi.WorkspacesApi getPathToPathLinksForGivenSourceAndTarget GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links/source/{sourcePath}/target/{targetPath} Get path-to-path link for given source and target
DocdokuPlmApi.WorkspacesApi getProductBaseline GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId} Get product-baseline by id
DocdokuPlmApi.WorkspacesApi getProductBaselineParts GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines/{baselineId}/parts Get product-baseline's baselined parts
DocdokuPlmApi.WorkspacesApi getProductBaselinesForProduct GET /workspaces/{workspaceId}/product-baselines/{ciId}/baselines Get product-baseline with given configuration item
DocdokuPlmApi.WorkspacesApi getProductInstance GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber} Get product-instance by serial number
DocdokuPlmApi.WorkspacesApi getProductInstanceIteration GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration} Get product-instance's iteration
DocdokuPlmApi.WorkspacesApi getProductInstanceIterations GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations Get product-instance's iterations
DocdokuPlmApi.WorkspacesApi getProductInstanceMasters GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-product-instance-masters Get product instance where part revision is in use
DocdokuPlmApi.WorkspacesApi getProductInstances GET /workspaces/{workspaceId}/product-instances/{ciId}/instances Get product-instance with given configuration item
DocdokuPlmApi.WorkspacesApi getReachableUsersForCaller GET /workspaces/reachable-users Get online users visible by authenticated user
DocdokuPlmApi.WorkspacesApi getRequest GET /workspaces/{workspaceId}/changes/requests/{requestId} Get change request by id
DocdokuPlmApi.WorkspacesApi getRequests GET /workspaces/{workspaceId}/changes/requests Get requests for given parameters
DocdokuPlmApi.WorkspacesApi getRequestsByMilestone GET /workspaces/{workspaceId}/changes/milestones/{milestoneId}/requests Get change requests for a given milestone
DocdokuPlmApi.WorkspacesApi getRolesInUseInWorkspace GET /workspaces/{workspaceId}/roles/inuse Get roles in use in given workspace
DocdokuPlmApi.WorkspacesApi getRolesInWorkspace GET /workspaces/{workspaceId}/roles Get roles in given workspace
DocdokuPlmApi.WorkspacesApi getRootFolders GET /workspaces/{workspaceId}/folders Get root folders
DocdokuPlmApi.WorkspacesApi getRootPathToPathLinks GET /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/path-to-path-links-roots/{type} Get root path-to-path links
DocdokuPlmApi.WorkspacesApi getStatsOverview GET /workspaces/{workspaceId}/stats-overview Get stats overview for workspace
DocdokuPlmApi.WorkspacesApi getSubFolders GET /workspaces/{workspaceId}/folders/{completePath}/folders Get sub folders of given folder
DocdokuPlmApi.WorkspacesApi getTagSubscriptionsForGroup GET /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions Get tag subscriptions of given user group
DocdokuPlmApi.WorkspacesApi getTagSubscriptionsForUser GET /workspaces/{workspaceId}/users/{login}/tag-subscriptions Get tag subscriptions of user
DocdokuPlmApi.WorkspacesApi getTagsInWorkspace GET /workspaces/{workspaceId}/tags Get tags in given workspace
DocdokuPlmApi.WorkspacesApi getTask GET /workspaces/{workspaceId}/tasks/{taskId} Get task by id
DocdokuPlmApi.WorkspacesApi getTotalNumberOfParts GET /workspaces/{workspaceId}/parts/count Count part revisions in workspace
DocdokuPlmApi.WorkspacesApi getUsedByAsComponent GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-component Get part revisions where given part revision is used as a component
DocdokuPlmApi.WorkspacesApi getUsedByAsSubstitute GET /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/used-by-as-substitute Get part revisions where given part revision is used as a substitute
DocdokuPlmApi.WorkspacesApi getUserGroups GET /workspaces/{workspaceId}/user-group Get user groups in given workspace
DocdokuPlmApi.WorkspacesApi getUsersInGroup GET /workspaces/{workspaceId}/groups/{groupId}/users Get users of given user group
DocdokuPlmApi.WorkspacesApi getUsersInWorkspace GET /workspaces/{workspaceId}/users Get users in workspace
DocdokuPlmApi.WorkspacesApi getUsersStats GET /workspaces/{workspaceId}/users-stats Get user stats for workspace
DocdokuPlmApi.WorkspacesApi getWebhook GET /workspaces/{workspaceId}/webhooks/{webhookId} Get webhook by id
DocdokuPlmApi.WorkspacesApi getWebhooks GET /workspaces/{workspaceId}/webhooks Get webhooks in given workspace
DocdokuPlmApi.WorkspacesApi getWorkflowAbortedWorkflowList GET /workspaces/{workspaceId}/workflow-instances/{workflowId}/aborted Get workflow's aborted workflow list
DocdokuPlmApi.WorkspacesApi getWorkflowInstance GET /workspaces/{workspaceId}/workflow-instances/{workflowId} Get instantiated workflow in workspace
DocdokuPlmApi.WorkspacesApi getWorkflowModelInWorkspace GET /workspaces/{workspaceId}/workflow-models/{workflowModelId} Get workflow model by id
DocdokuPlmApi.WorkspacesApi getWorkflowModelsInWorkspace GET /workspaces/{workspaceId}/workflow-models Get workflow models in given workspace
DocdokuPlmApi.WorkspacesApi getWorkspaceBackOptions GET /workspaces/{workspaceId}/back-options Get workspace back-end options
DocdokuPlmApi.WorkspacesApi getWorkspaceFrontOptions GET /workspaces/{workspaceId}/front-options Get workspace front-end options
DocdokuPlmApi.WorkspacesApi getWorkspaceSpecificUserGroupMemberShips GET /workspaces/{workspaceId}/memberships/usergroups/me Get workspace's group membership for authenticated user
DocdokuPlmApi.WorkspacesApi getWorkspaceSpecificUserMemberShips GET /workspaces/{workspaceId}/memberships/users/me Get workspace's user membership for authenticated user
DocdokuPlmApi.WorkspacesApi getWorkspaceUserGroupMemberShips GET /workspaces/{workspaceId}/memberships/usergroups Get workspace's group membership for authenticated user
DocdokuPlmApi.WorkspacesApi getWorkspaceUserMemberShips GET /workspaces/{workspaceId}/memberships/users Get workspace's user memberships
DocdokuPlmApi.WorkspacesApi getWorkspaceWorkflow GET /workspaces/{workspaceId}/workspace-workflows/{workspaceWorkflowId} Get a workspace workflow by id
DocdokuPlmApi.WorkspacesApi getWorkspaceWorkflowList GET /workspaces/{workspaceId}/workspace-workflows Get workspace workflow list in given workspace
DocdokuPlmApi.WorkspacesApi getWorkspacesForConnectedUser GET /workspaces Get workspace list for authenticated user
DocdokuPlmApi.WorkspacesApi importPartAttributes POST /workspaces/{workspaceId}/parts/import Import part iteration attributes from file
DocdokuPlmApi.WorkspacesApi importProductInstanceAttributes POST /workspaces/{workspaceId}/product-instances/import Import attribute into product-instance
DocdokuPlmApi.WorkspacesApi markDocumentRevisionAsObsolete PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/obsolete Set document revision as obsolete
DocdokuPlmApi.WorkspacesApi markPartRevisionAsObsolete PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/obsolete Set part revision as obsolete
DocdokuPlmApi.WorkspacesApi moveDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/move Move document revision to given folder
DocdokuPlmApi.WorkspacesApi moveFolder PUT /workspaces/{workspaceId}/folders/{folderId}/move Move a folder to given folder
DocdokuPlmApi.WorkspacesApi processTask PUT /workspaces/{workspaceId}/tasks/{taskId}/process Approve or reject task on a document or part revision
DocdokuPlmApi.WorkspacesApi publishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/publish Publish a document revision
DocdokuPlmApi.WorkspacesApi publishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/publish Publish part revision
DocdokuPlmApi.WorkspacesApi rebaseProductInstance PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/rebase Rebase product-instance with given baseline
DocdokuPlmApi.WorkspacesApi releaseDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/release Release document revision
DocdokuPlmApi.WorkspacesApi releasePartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/release Release part revision
DocdokuPlmApi.WorkspacesApi removeAttachedFileFromDocument DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Remove attached file from document iteration
DocdokuPlmApi.WorkspacesApi removeAttachedFileFromDocumentTemplate DELETE /workspaces/{workspaceId}/document-templates/{templateId}/files/{fileName} Remove attached file from document template
DocdokuPlmApi.WorkspacesApi removeAttachedFileFromPartTemplate DELETE /workspaces/{workspaceId}/part-templates/{templateId}/files/{fileName} Remove attached file from part master template
DocdokuPlmApi.WorkspacesApi removeAttachedFileFromProductInstance DELETE /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration}/files/{fileName} Remove attached file from product-instance
DocdokuPlmApi.WorkspacesApi removeDocTags DELETE /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags/{tagName} Remove tags from document revision
DocdokuPlmApi.WorkspacesApi removeFile DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Remove file from part iteration
DocdokuPlmApi.WorkspacesApi removeGroup DELETE /workspaces/{workspaceId}/user-group/{groupId} Remove a user group
DocdokuPlmApi.WorkspacesApi removeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId} Delete change issue
DocdokuPlmApi.WorkspacesApi removeMilestone DELETE /workspaces/{workspaceId}/changes/milestones/{milestoneId} Delete milestone
DocdokuPlmApi.WorkspacesApi removeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId} Delete order
DocdokuPlmApi.WorkspacesApi removePartTags DELETE /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags/{tagName} Delete tags from part revision
DocdokuPlmApi.WorkspacesApi removeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId} Delete change request
DocdokuPlmApi.WorkspacesApi removeTagFromChangeRequest DELETE /workspaces/{workspaceId}/changes/requests/{requestId}/tags/{tagName} Delete tag attached to a change request
DocdokuPlmApi.WorkspacesApi removeTagsFromChangeIssue DELETE /workspaces/{workspaceId}/changes/issues/{issueId}/tags/{tagName} Delete a tag attached to a change issue
DocdokuPlmApi.WorkspacesApi removeTagsFromChangeOrder DELETE /workspaces/{workspaceId}/changes/orders/{orderId}/tags/{tagName} Delete tag attached to order
DocdokuPlmApi.WorkspacesApi removeUserFromGroup PUT /workspaces/{workspaceId}/remove-from-group/{groupId} Remove user from user group
DocdokuPlmApi.WorkspacesApi removeUserFromWorkspace PUT /workspaces/{workspaceId}/remove-from-workspace Remove user from workspace
DocdokuPlmApi.WorkspacesApi renameAttachedFileInDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration}/files/{fileName} Rename attached files of document iteration
DocdokuPlmApi.WorkspacesApi renameAttachedFileInDocumentTemplate PUT /workspaces/{workspaceId}/document-templates/{templateId}/files/{fileName} Rename attached file in document template
DocdokuPlmApi.WorkspacesApi renameAttachedFileInPartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/files/{subType}/{fileName} Rename attached file from part iteration
DocdokuPlmApi.WorkspacesApi renameAttachedFileInPartTemplate PUT /workspaces/{workspaceId}/part-templates/{templateId}/files/{fileName} Rename attached file in part master template
DocdokuPlmApi.WorkspacesApi renameAttachedFileInPathData PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration}/files/{fileName} Rename product-instance's attached file
DocdokuPlmApi.WorkspacesApi renameAttachedFileInProductInstance PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration}/files/{fileName} Rename attached file in product instance iteration
DocdokuPlmApi.WorkspacesApi renameFolder PUT /workspaces/{workspaceId}/folders/{folderId} Rename a folder
DocdokuPlmApi.WorkspacesApi retryConversion PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration}/conversion Retry part iteration conversion
DocdokuPlmApi.WorkspacesApi runCustomQuery POST /workspaces/{workspaceId}/parts/queries Run custom query in workspace
DocdokuPlmApi.WorkspacesApi saveAffectedIssues PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-issues Attach issue to a change request
DocdokuPlmApi.WorkspacesApi saveAffectedRequests PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-requests Attach request to order
DocdokuPlmApi.WorkspacesApi saveChangeIssueAffectedDocuments PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-documents Attach a document to a change issue
DocdokuPlmApi.WorkspacesApi saveChangeIssueAffectedParts PUT /workspaces/{workspaceId}/changes/issues/{issueId}/affected-parts Attach a part to a change issue
DocdokuPlmApi.WorkspacesApi saveChangeItemTags PUT /workspaces/{workspaceId}/changes/issues/{issueId}/tags Update tags attached to a change issue
DocdokuPlmApi.WorkspacesApi saveChangeOrderAffectedDocuments PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-documents Attach document to order
DocdokuPlmApi.WorkspacesApi saveChangeOrderAffectedParts PUT /workspaces/{workspaceId}/changes/orders/{orderId}/affected-parts Attach part to order
DocdokuPlmApi.WorkspacesApi saveChangeOrderTags PUT /workspaces/{workspaceId}/changes/orders/{orderId}/tags Update tag attached to order
DocdokuPlmApi.WorkspacesApi saveChangeRequestAffectedDocuments PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-documents Attach document to a change request
DocdokuPlmApi.WorkspacesApi saveChangeRequestAffectedParts PUT /workspaces/{workspaceId}/changes/requests/{requestId}/affected-parts Attach part to a change request
DocdokuPlmApi.WorkspacesApi saveChangeRequestTags PUT /workspaces/{workspaceId}/changes/requests/{requestId}/tags Update tag attached to a change request
DocdokuPlmApi.WorkspacesApi saveDocTags PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/tags Set the tags of the document revision
DocdokuPlmApi.WorkspacesApi savePartTags PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/tags Save part revision tags
DocdokuPlmApi.WorkspacesApi searchConfigurationItemId GET /workspaces/{workspaceId}/products/numbers Search configuration items by reference
DocdokuPlmApi.WorkspacesApi searchDocumentRevision GET /workspaces/{workspaceId}/documents/search Search document revisions
DocdokuPlmApi.WorkspacesApi searchDocumentRevisionsToLink GET /workspaces/{workspaceId}/documents/doc_revs Search document revisions by id and/or name
DocdokuPlmApi.WorkspacesApi searchIssuesByName GET /workspaces/{workspaceId}/changes/issues/link Search change issue with given name
DocdokuPlmApi.WorkspacesApi searchPartNumbers GET /workspaces/{workspaceId}/parts/numbers Search for available part numbers in given workspace
DocdokuPlmApi.WorkspacesApi searchPartRevisions GET /workspaces/{workspaceId}/parts/search Search part revisions in workspace
DocdokuPlmApi.WorkspacesApi searchPartsLastIterationWithReferenceOrName GET /workspaces/{workspaceId}/parts/parts_last_iter Search documents last iteration to link
DocdokuPlmApi.WorkspacesApi searchPaths GET /workspaces/{workspaceId}/products/{ciId}/paths Search paths with part reference or name
DocdokuPlmApi.WorkspacesApi searchRequestsByName GET /workspaces/{workspaceId}/changes/requests/link Search request with given name
DocdokuPlmApi.WorkspacesApi setGroupAccess PUT /workspaces/{workspaceId}/group-access Set user group access in workspace
DocdokuPlmApi.WorkspacesApi setNewAdmin PUT /workspaces/{workspaceId}/admin Set a new admin for given workspace
DocdokuPlmApi.WorkspacesApi setUserAccess PUT /workspaces/{workspaceId}/user-access Set user access in workspace
DocdokuPlmApi.WorkspacesApi subscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/subscribe Subscribe to notifications on change events for given document revision
DocdokuPlmApi.WorkspacesApi subscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/subscribe Subscribe to notifications on state events for given document revision
DocdokuPlmApi.WorkspacesApi synchronizeIndexer PUT /workspaces/{workspaceId}/index Re-Index a workspace
DocdokuPlmApi.WorkspacesApi unPublishDocumentRevision PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/unpublish Un-publish a document revision
DocdokuPlmApi.WorkspacesApi unPublishPartRevision PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/unpublish Un-publish part revision
DocdokuPlmApi.WorkspacesApi unSubscribeToIterationChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/iterationChange/unsubscribe Unsubscribe from notifications on change events for given document revision
DocdokuPlmApi.WorkspacesApi undoCheckOut PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/undocheckout Undo checkout part revision
DocdokuPlmApi.WorkspacesApi undoCheckOutDocument PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/undocheckout Undo checkout document revision
DocdokuPlmApi.WorkspacesApi unsubscribeToStateChangeEvent PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/notification/stateChange/unsubscribe Unsubscribe to notifications on state events for given document revision
DocdokuPlmApi.WorkspacesApi updateChangeIssueACL PUT /workspaces/{workspaceId}/changes/issues/{issueId}/acl Update ACL of a change issue
DocdokuPlmApi.WorkspacesApi updateChangeOrderACL PUT /workspaces/{workspaceId}/changes/orders/{orderId}/acl Update ACL of the order
DocdokuPlmApi.WorkspacesApi updateChangeRequestACL PUT /workspaces/{workspaceId}/changes/requests/{requestId}/acl Update ACL of a change request
DocdokuPlmApi.WorkspacesApi updateConfigurationACL PUT /workspaces/{workspaceId}/product-configurations/{ciId}/configurations/{productConfigurationId}/acl Update product configuration ACL
DocdokuPlmApi.WorkspacesApi updateDocumentIteration PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/iterations/{docIteration} Update document iteration
DocdokuPlmApi.WorkspacesApi updateDocumentMasterTemplate PUT /workspaces/{workspaceId}/document-templates/{templateId} Update document template
DocdokuPlmApi.WorkspacesApi updateDocumentMasterTemplateACL PUT /workspaces/{workspaceId}/document-templates/{templateId}/acl Update document template ACL
DocdokuPlmApi.WorkspacesApi updateDocumentRevisionACL PUT /workspaces/{workspaceId}/documents/{documentId}-{documentVersion}/acl Update document revision ACL
DocdokuPlmApi.WorkspacesApi updateEffectivity PUT /workspaces/{workspaceId}/effectivities/{effectivityId} Update effectivity
DocdokuPlmApi.WorkspacesApi updateIssue PUT /workspaces/{workspaceId}/changes/issues/{issueId} Update change issue
DocdokuPlmApi.WorkspacesApi updateLOV PUT /workspaces/{workspaceId}/lov/{name} Update a ListOfValues
DocdokuPlmApi.WorkspacesApi updateLayer PUT /workspaces/{workspaceId}/products/{ciId}/layers/{layerId} Update layer
DocdokuPlmApi.WorkspacesApi updateMilestone PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId} Update milestone
DocdokuPlmApi.WorkspacesApi updateMilestoneACL PUT /workspaces/{workspaceId}/changes/milestones/{milestoneId}/acl Update ACL of a milestone
DocdokuPlmApi.WorkspacesApi updateOrder PUT /workspaces/{workspaceId}/changes/orders/{orderId} Update order
DocdokuPlmApi.WorkspacesApi updatePartIteration PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/iterations/{partIteration} Update part iteration
DocdokuPlmApi.WorkspacesApi updatePartMasterTemplate PUT /workspaces/{workspaceId}/part-templates/{templateId} Update part master template
DocdokuPlmApi.WorkspacesApi updatePartMasterTemplateACL PUT /workspaces/{workspaceId}/part-templates/{templateId}/acl Update part master template ACL
DocdokuPlmApi.WorkspacesApi updatePartRevisionACL PUT /workspaces/{workspaceId}/parts/{partNumber}-{partVersion}/acl Update part revision ACL
DocdokuPlmApi.WorkspacesApi updatePathData PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/pathdata/{pathDataId}/iterations/{iteration} Update path-data
DocdokuPlmApi.WorkspacesApi updatePathToPathLink PUT /workspaces/{workspaceId}/products/{ciId}/path-to-path-links/{pathToPathLinkId} Update path-to-path link
DocdokuPlmApi.WorkspacesApi updateProductInstanceACL PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/acl Update product-instance's ACL
DocdokuPlmApi.WorkspacesApi updateProductInstanceMaster PUT /workspaces/{workspaceId}/product-instances/{ciId}/instances/{serialNumber}/iterations/{iteration} Update product-instance
DocdokuPlmApi.WorkspacesApi updateRequest PUT /workspaces/{workspaceId}/changes/requests/{requestId} Update change request
DocdokuPlmApi.WorkspacesApi updateRole PUT /workspaces/{workspaceId}/roles/{roleName} Update a role
DocdokuPlmApi.WorkspacesApi updateUserGroupSubscription PUT /workspaces/{workspaceId}/groups/{groupId}/tag-subscriptions/{tagName} Update or create tag subscription of given user group
DocdokuPlmApi.WorkspacesApi updateUserSubscription PUT /workspaces/{workspaceId}/users/{login}/tag-subscriptions/{tagName} Update or create tag subscription of user
DocdokuPlmApi.WorkspacesApi updateWebhook PUT /workspaces/{workspaceId}/webhooks/{webhookId} Update a webhook
DocdokuPlmApi.WorkspacesApi updateWorkflowModel PUT /workspaces/{workspaceId}/workflow-models/{workflowModelId} Update a workflow model
DocdokuPlmApi.WorkspacesApi updateWorkflowModelACL PUT /workspaces/{workspaceId}/workflow-models/{workflowModelId}/acl Update workflow model ACL
DocdokuPlmApi.WorkspacesApi updateWorkspace PUT /workspaces/{workspaceId} Update a workspace
DocdokuPlmApi.WorkspacesApi updateWorkspaceBackOptions PUT /workspaces/{workspaceId}/back-options Update workspace back-end options
DocdokuPlmApi.WorkspacesApi updateWorkspaceFrontOptions PUT /workspaces/{workspaceId}/front-options Update workspace front-end options
DocdokuPlmApi.WorkspacesApi whoAmI GET /workspaces/{workspaceId}/users/me Get authenticated user details

Documentation for Models

Documentation for Authorization

authorization