DELETE
/
v0
/
project
/
{project}
/
contexts
/
{context}
/
artifacts
/
{key}
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/eval-project/contexts/training/artifacts/context-description' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Context artifact deleted successfully!"
}

Deletes an artifact from a context within a project.

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 containing the context.

context
string
required

Name of the context to delete an artifact from.

key
string
required

Key of the artifact to delete.

curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/eval-project/contexts/training/artifacts/context-description' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Context artifact deleted successfully!"
}