account groups
Delete group
Permanently deletes an account group. The accounts themselves are not affected.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
groupIdstring
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.accountGroups.deleteAccountGroup({ path: { groupId: 'group_abc123', },});console.log(data);{
"message": "Account group deleted successfully"
}Empty
{
"error": "Unauthorized"
}{
"error": "Not found"
}Update group PUT
Updates the name or account list of an existing group. You can rename the group, change its accounts, or both.
List connected apps GET
Returns the OAuth clients (AI assistants and MCP connectors) the authenticated user has authorized and that still hold a live token. Requires a session or a full-access API key. A profile-scoped API key, a restricted (zrk_) API key, or an OAuth access token is rejected with 403: an app must not be able to enumerate its sibling authorizations, and connected-app management is admin-plane.