Skip to main content
GET
/
v1
/
evidence
/
{id}
Describe a piece of evidence
curl --request GET \
  --url https://api.app.chainloop.dev/v1/evidence/{id} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "workflow_id": "workflow_id",
    "workflow_name": "workflow_name",
    "uploaded_to_cas": true,
    "kind": "kind",
    "latest_in_project_version": true,
    "subject_version": "subject_version",
    "ingestion_started_at": "2000-01-23T04:56:07.000Z",
    "annotations": {
      "key": "annotations"
    },
    "created_at": "2000-01-23T04:56:07.000Z",
    "organization_name": "organization_name",
    "project_version_id": "project_version_id",
    "project_name": "project_name",
    "latest_in_project": true,
    "project_version_name": "project_version_name",
    "project_id": "project_id",
    "ingestion_finished_at": "2000-01-23T04:56:07.000Z",
    "ingestion_has_error": true,
    "organization_id": "organization_id",
    "name": "name",
    "digest": "digest",
    "subject_name": "subject_name",
    "id": "id",
    "workflow_run_id": "workflow_run_id"
  }
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Path Parameters

id
string
required

UUID of the evidence to describe

Response

A successful response.

Response for the Describe method

result
EvidenceListItem · object

It represents an item in the list of evidence

Example:
{
"workflow_id": "workflow_id",
"workflow_name": "workflow_name",
"uploaded_to_cas": true,
"kind": "kind",
"latest_in_project_version": true,
"subject_version": "subject_version",
"ingestion_started_at": "2000-01-23T04:56:07.000Z",
"annotations": { "key": "annotations" },
"created_at": "2000-01-23T04:56:07.000Z",
"organization_name": "organization_name",
"project_version_id": "project_version_id",
"project_name": "project_name",
"latest_in_project": true,
"project_version_name": "project_version_name",
"project_id": "project_id",
"ingestion_finished_at": "2000-01-23T04:56:07.000Z",
"ingestion_has_error": true,
"organization_id": "organization_id",
"name": "name",
"digest": "digest",
"subject_name": "subject_name",
"id": "id",
"workflow_run_id": "workflow_run_id"
}