/
REST/MVC Artifacts Controller

REST/MVC Artifacts Controller


REST/MVC Path for artifact definition
HTTP MethodPathDescriptionController Method
/rest/artifacts/{artifactId}Retrieves artifact file by artifactIdgetArtifact(artifactId: String)
Parameters:
  • artifactId: Artifact identifier (Path parameter)
/rest/artifacts/{versiontId}/artifactsRetrives zipped artifact files by versionIdgetPackagedArtifacts(versionId: String)

Parameters:

  • versionId: Version Identifier (Path parameter)

/rest/artifacts/metadataRetrieves artifacts metadata

getArtifactsMetadata(versionId: String)

Parameters:
  • versionId: Version identifier (Query parameter)
/rest/artifacts/{versionId}Uploads an artifact to the provided versionIduploadArtifacts(versionId: String, artifacts : List<FileAttachmentDTO artifacts, replace : boolean)
Parameters:
  • versionIdVersion identifier (Path parameter)
  • artifacts: Artifact Files (provided from mime-multipart)
  • replace: Indicates if previous artifacts maybe replaced (Request parameter)
/rest/artifacts/{artifactId}Removes an existent artifactremoveArtifact(artifactId: String)
Parameters:
  • artifactId: Artifact identifier (Path parameter)




Related content

Avvale 2024