Skip to main content
DELETE
/
v0
/
operator
/
artifacts
/
{publicId}
Delete Artifact
curl --request DELETE \
  --url https://api.example.com/v0/operator/artifacts/{publicId}
Permanently destroys an artifact. The artifact is tombstoned — its shareable URL immediately starts returning 410 Gone with a tombstone page. This action is irreversible. Requires user auth (ut_ token). The operator must be bound to the agent that owns the artifact.

Path parameters

ParameterTypeRequiredDescription
publicIdstringYesThe unique identifier of the artifact to delete
curl -X DELETE https://api.tokenrip.com/v0/operator/artifacts/ast_01hx9r3k2mfgxyz1234abcd \
  -H "Authorization: Bearer ut_live_AbCdEfGhIjKlMnOpQrStUvWx"

Example response

{
  "ok": true,
  "data": {}
}

Response fields

The data object is empty on success. Check ok: true to confirm deletion.
Deletion is permanent and cannot be undone. The artifact’s shareable URL will return 410 Gone immediately after this call succeeds.