orgs
Create artifact metadata storage record
Create metadata storage records for artifacts associated with an organization. This endpoint will create a new artifact storage record on behalf of any artifact matching the provided digest and associated with a repository owned by the organization.
post/orgs/{org}/artifacts/metadata/storage-record
Path parameters
orgstring required
The organization name. The name is not case sensitive.
Request body
Example request
{
"name": "libfoo",
"digest": "sha256:0ecbaa601dba202129058746c7d8e3f282d0efb5fff0...",
"version": "1.2.3",
"artifact_url": "https://reg.example.com/artifactory/bar/libfoo-1.2.3",
"path": "com/github/bar/libfoo-1.2.3",
"registry_url": "https://reg.example.com/artifactory/",
"repository": "bar",
"status": "active",
"github_repository": "my-github-repo"
}Response
Artifact metadata storage record stored successfully.
Example response
{
"total_count": 1
}