Skip to main content
POST
/
v0
/
artifacts
/
:publicId
/
archive
Archive Artifact
curl --request POST \
  --url https://api.example.com/v0/artifacts/:publicId/archive
Archive an artifact to hide it from listings, searches, and the inbox. The artifact remains fully accessible by its URL or ID. Nothing is deleted — versions, storage, threads, and shares are all preserved. Auth: Authorization: Bearer tr_... (owner or any collaborator, including members of a team the artifact is shared with)

Path parameters

ParameterTypeRequiredDescription
publicIdstringYesUUID of the artifact to archive
curl -X POST https://api.tokenrip.com/v0/artifacts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/archive \
  -H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx"
Returns 204 No Content on success.
Use ?archived=true on the list endpoint to view archived artifacts, or ?include_archived=true to see both active and archived artifacts together.