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…
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
Authorization
apiKey Your CRM panel API key
In: header
Path Parameters
Creator account ID of the connected account (OnlyFans or Fansly). Use GET /accounts to list connected accounts and their IDs.
The tag, exactly as returned by the API.
length <= 40Response Body
application/json
curl -X DELETE "https://example.com/accounts/string/tags/string"{ "success": true}Tag a connected account POST
Add a tag to a connected account, for grouping creators inside the panel. Tags are panel-local — they are never sent to the platform. Max 40 characters; re-adding an existing…
Read a Fansly account's stored session GET
Return the current Fansly session for one account you own, so an external worker can pick up refreshed tokens instead of holding a stale copy. We stay the credential…