Returns a collection with a key, ID, and link for each customer account group.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "HW VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/1"
}, - {
- "key": "2",
- "id": "OS VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/2"
}, - {
- "key": "3",
- "id": "Stationary VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/3"
}, - {
- "key": "4",
- "id": "Electronic VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/4"
}, - {
- "key": "5",
- "id": "Gardening VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/5"
}, - {
- "key": "6",
- "id": "Auto VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/6"
}, - {
- "key": "7",
- "id": "Inactive VGL Group",
- "href": "/objects/accounts-receivable/customer-account-group/7"
}
], - "ia::meta": {
- "totalCount": 7,
- "start": 1,
- "pageSize": 100,
- "next": 0,
- "previous": 0
}
}
Creates a new customer account group.
id required | string Customer account group name Example: "Top Level customer" |
groupType | string Default: "customer" Customer account group type Example: "customer" |
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
Created
Bad Request
{- "id": "1099 Customer Group",
- "groupType": "customer",
- "status": "active"
}
{- "ia::result": {
- "key": "18",
- "id": "1099 Customer Group",
- "href": "/objects/accounts-receivable/customer-account-group/18"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified customer account group.
key required | string System-assigned unique key for the customer account group. Example: 190 |
customer-account-group Found
customer-account-group Not Found
{- "ia::result": {
- "id": "HW VGL Group",
- "key": "1",
- "groupType": "customer",
- "status": "inactive",
- "href": "/objects/accounts-receivable/customer-account-group/1"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing customer account group by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the customer account group. Example: 190 |
groupType | string Default: "customer" Customer account group type Example: "customer" |
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
OK
Bad Request
{- "status": "inactive"
}
{- "ia::result": {
- "key": "18",
- "id": "1099 Customer Group",
- "href": "/objects/accounts-receivable/customer-account-group/18"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes a customer account group.
key required | string System-assigned unique key for the customer account group. Example: 190 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}
Use the query service to find customer account groups that meet certain criteria and to specify the properties that are returned.
OK