POST
/
v0
/
project
/
{project}
/
artifacts
curl --request POST \
  --url 'https://api.unify.ai/v0/project/eval-project/artifacts' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "artifacts": {
        "dataset": "high-jump-data",
        "world-record": 2.45
    }
}'
{
    "info": "Artifact(s) created successfully!"
}

Creates one or more artifacts associated to a project. Artifacts are project-level metadata that don’t depend on other variables.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project
string
required

Name of the project the artifacts belong to.

Body

artifacts
object
required

Dictionary containing one or more key:value pairs that will be stored as artifacts within a project.

curl --request POST \
  --url 'https://api.unify.ai/v0/project/eval-project/artifacts' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "artifacts": {
        "dataset": "high-jump-data",
        "world-record": 2.45
    }
}'
{
    "info": "Artifact(s) created successfully!"
}