listAccountGroups
GET /v5/books/{bookId}/accounts/{id}/groups
List the groups of an account
Parameters
Path Parameters
The id of the book. Same bookId url param on Bkper
The account id or name
Responses
200
A GroupList response
object
List items
object
The id of agent that created the resource
The creation timestamp, in milliseconds
Whether the group has credit nature
Whether the group has any accounts
Whether the group has any children groups
Whether the group is hidden on the transactions main menu
The unique id that identifies the Group in the Book
Whether the group is locked by the Book owner
Whether the group has mixed types of accounts
The name of the Group
The name of the Group, lowercase, without spaces or special characters
Whether the group is permanent
The key/value custom properties of the Group
object
The type of the accounts in the group. E.g. ASSET, LIABILITY, INCOMING, OUTGOING
The last update timestamp, in milliseconds
Example
{ "agentId": "string", "createdAt": "1592000000000", "credit": true, "hasAccounts": true, "hasGroups": true, "hidden": true, "id": "string", "locked": true, "mixed": true, "name": "string", "normalizedName": "string", "parent": null, "permanent": true, "properties": { "key": "value" }, "type": "ASSET", "updatedAt": "1592000000000"}Example
{ "items": [ { "agentId": "string", "createdAt": "1592000000000", "credit": true, "hasAccounts": true, "hasGroups": true, "hidden": true, "id": "string", "locked": true, "mixed": true, "name": "string", "normalizedName": "string", "parent": null, "permanent": true, "properties": { "key": "value" }, "type": "ASSET", "updatedAt": "1592000000000" } ]}