curl --request DELETE \
--url 'https://api.unify.ai/v0/logs' \
--header "Authorization: Bearer $UNIFY_KEY" \
--header 'Content-Type: application/json' \
--data '{
"project": "eval-project",
"context": "experiment1/trial1",
"ids_and_fields": [
[
123,
"score"
],
[
[
456,
457
],
[
"score",
"response"
]
],
[
[
458,
459,
460
],
"response"
],
[
{
"score": "100"
},
null
],
[
null,
"score"
]
],
"source_type": "all",
"delete_empty_logs": true,
"delete_empty_fields": true
}'