GET
/
discover
/
{digest}
curl --request GET \
  --url https://cp.chainloop.dev/discover/{digest} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "downloadable": true,
    "metadata": {
      "key": "metadata"
    },
    "public": true,
    "references": [
      null,
      null
    ],
    "kind": "kind",
    "digest": "digest",
    "created_at": "2000-01-23T04:56:07.000+00:00",
    "annotations": {
      "key": "annotations"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Path Parameters

digest
string
required

Digest is the unique identifier of the referrer to discover

Query Parameters

kind
string

Kind is the optional type of referrer, i.e CONTAINER_IMAGE, GIT_HEAD, ... Used to filter and resolve ambiguities

Response

200
application/json

A successful response.

Response for the DiscoverPrivate method