Account group members

Account group members are the member accounts contained within an account group.

List account group members

get/objects/general-ledger/account-group-member

Returns a collection with a key, ID, and link for each account group member.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "281",
      • "id": "281",
      • "href": "/objects/general-ledger/account-group-member/281"
      },
    • {
      • "key": "284",
      • "id": "284",
      • "href": "/objects/general-ledger/account-group-member/284"
      },
    • {
      • "key": "286",
      • "id": "286",
      • "href": "/objects/general-ledger/account-group-member/286"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get an account group member

get/objects/general-ledger/account-group-member/{key}

Returns detailed information for a specified account group member.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the account group member.

Example: 201
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "287",
    • "key": "287",
    • "glAccountGroup": {
      • "key": "710",
      • "id": "AG-GroupOfAccountGroups-01",
      • "href": "/objects/general-ledger/account-group/710"
      },
    • "accountGroup": {
      • "key": "528",
      • "id": "1000 cr",
      • "href": "/objects/general-ledger/account-group/528"
      },
    • "sortOrder": 0,
    • "audit": {
      • "createdDateTime": "2024-07-04T06:29:09Z",
      • "modifiedDateTime": "2024-07-04T06:29:09Z",
      • "createdBy": "1",
      • "modifiedBy": "1"
      },
    • "href": "/objects/general-ledger/account-group-member/287"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}