Skip to main content
DELETE
/
tags
/
{id}
Delete a tag
curl --request DELETE \
  --url https://api.odin.fun/v1/tags/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "created_time": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
number
required

Tag ID

Response

The tag has been successfully deleted

data
object
I