Vendor GL groups are categories of vendors grouped together so that transactions can be posted to specific GL accounts. Assign each vendor record to a vendor GL group. Finally, map the vendor GL group to GL accounts within transaction definitions.
Returns a collection with a key, ID, and link for each vendor GL group.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "Auto VGL Group",
- "href": "/objects/purchasing/vendor-gl-group/1"
}, - {
- "key": "13",
- "id": "VGL Group",
- "href": "/objects/purchasing/vendor-gl-group/13"
}, - {
- "key": "147",
- "id": "Stationary VGL Group",
- "href": "/objects/purchasing/vendor-gl-group/147"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Creates a new vendor GL group.
id required | string Name of the vendor GL group. Example: "GL Group" |
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": "Stationary VGL Group",
- "status": "active"
}
{- "ia::result": {
- "key": "6",
- "id": "VGL Group",
- "href": "/objects/purchasing/vendor-gl-group/6"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified vendor GL group.
key required | string System-assigned unique key for the vendor GL group. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "6",
- "id": "VGL Group",
- "status": "active",
- "audit": {
- "createdDateTime": "2024-10-22T07:37:32Z",
- "modifiedDateTime": "2024-10-22T07:37:32Z",
- "createdBy": "Admin",
- "modifiedBy": "Admin"
}, - "href": "/objects/purchasing/vendor-gl-group/6"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing vendor GL group by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the vendor GL group. Example: 99 |
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": "active"
}
{- "ia::result": {
- "id": "6",
- "status": "active",
- "href": "/objects/purchasing/vendor-gl-group/18"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes a vendor GL group. Vendor GL groups can be deleted if they are not used by any transaction or are not assigned to any vendors. Deleting a vendor GL group removes it from the system.
key required | string System-assigned unique key for the vendor GL group. Example: 99 |
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
}
}