The Only API docs
Accounts

Remove an account tag

Remove a tag from a connected account. Pass the tag exactly as the API returned it — the stored form is escaped once on the way in, so re-escaping it here would look for a…

DELETE
/accounts/{of_user_id}/tags/{tag}

Remove a tag from a connected account. Pass the tag exactly as the API returned it — the stored form is escaped once on the way in, so re-escaping it here would look for a different string and silently delete nothing. success: false means there was no such tag.

Guide: Connect an account

X-API-Key<token>

Your CRM panel API key

In: header

Path Parameters

of_user_id*string

Creator account ID of the connected account (OnlyFans or Fansly). Use GET /accounts to list connected accounts and their IDs.

tag*string

The tag, exactly as returned by the API.

Lengthlength <= 40

Response Body

application/json

curl -X DELETE "https://example.com/accounts/string/tags/string"
{  "success": true}