profiles
Delete profile
Permanently deletes a profile by ID.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
profileIdstring
Response Body
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.profiles.deleteProfile({ path: { profileId: 'profile_abc123', },});console.log(data);{
"message": "Profile deleted successfully"
}Empty
{
"error": "Unauthorized"
}Empty
{
"error": "Not found"
}Update profile PUT
Updates a profile's name, description, color, or default status.
List accounts GET
Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on. Supports optional server-side pagination via page/limit params. When omitted, returns all accounts (backward-compatible).