Tag a connected account
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…
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 tag is a no-op.
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.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/accounts/string/tags" \ -H "Content-Type: application/json" \ -d '{ "tag": "string" }'{ "success": true, "tag": null}Update polling settings PATCH
Enable/disable background polling for an account, set the interval, and control whether automations may perform write actions on the platform.
Remove an account tag DELETE
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…