Account allocation group members

Account allocation group members are the member accounts contained within an account allocation group. An account allocation group member contains the reference to the account allocation that is run as part of the account allocation group. Account allocation group member objects can only be created and updated through the owning account allocation group object.

List account allocation group members

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

Returns a collection with a key, ID, and link for each group member. This operation is mostly for use in testing; use the query service to find allocation group members that meet specific criteria and to specify the properties that you want in the response.

SecurityOAuth2
Responses
200

OK

400

Bad Request

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

Get an account allocation group member

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

Returns detailed information for a specified account allocation group member.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the account allocation group member.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "1",
    • "key": "1",
    • "glAccountAllocationGroup": {
      • "id": "Fringe Group",
      • "key": "1",
      • "href": "/objects/general-ledger/account-allocation-group/1"
      },
    • "glAccountAllocation": {
      • "name": "Fringe01",
      • "id": "1",
      • "key": "1",
      • "href": "/objects/general-ledger/account-allocation/1"
      },
    • "status": "active",
    • "audit": {
      • "createdDateTime": "2025-01-28T16:20:22Z",
      • "modifiedDateTime": "2025-01-28T16:20:22Z",
      • "createdByUser": {
        },
      • "createdBy": "159",
      • "modifiedByUser": {
        },
      • "modifiedBy": "159"
      },
    • "href": "/objects/general-ledger/account-allocation-group-member/1"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}