Create group
Creates a new account group with a name and a list of social account IDs. Accounts can belong to different profiles; the caller must have access to every account's profile. Group names must be unique per user.
API key authentication - use your Zernio API key as a Bearer token
In: header
Deprecated. Accepted for backward compatibility but ignored. Groups are no longer scoped to a single profile.
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.accountGroups.createAccountGroup({ body: { name: 'Example', accountIds: [ 'account_abc123', ], },});console.log(data);{
"message": "Account group created successfully",
"group": {
"_id": "6507a1b2c3d4e5f6a7b8c9d0",
"name": "Marketing Accounts",
"accountIds": [
"64e1f0a9e2b5af0012ab34cd",
"64e1f0a9e2b5af0012ab34ce"
]
}
}{
"error": "Unauthorized"
}List groups GET
Returns all account groups visible to the authenticated user. Groups can contain accounts from multiple profiles. For API keys scoped to specific profiles, only groups whose accounts all live in allowed profiles are returned.
Update group PUT
Updates the name or account list of an existing group. You can rename the group, change its accounts, or both.