Skip to content

Unfavorite an artifact

DELETE
/v1/artifacts/{id}/favorite
curl --request DELETE \
--url https://shareout.site/v1/artifacts/example/favorite \
--header 'Authorization: Bearer <token>'

Idempotent.

id
required
string

Artifact ID (e.g. art_abc123).

Unfavorited

Media type application/json
object
success
boolean
artifact_id
string
favorited
boolean
Example generated
{
"success": true,
"artifact_id": "example",
"favorited": true
}