Skip to main content
DELETE
/
token
/
{id}
/
tag
/
{tagId}
Remove a tag from a token
curl --request DELETE \
  --url https://api.odin.fun/v1/token/{id}/tag/{tagId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Token ID

tagId
number
required

Tag ID

Response

The tag has been successfully removed from the token

success
boolean
message
string
I