Use a statistical adjustment journal to store entries made to closed periods. You must create one or more statistical adjustment journals before creating statistical adjusting entries.
For more information, read about statistical adjustment journals in the Sage Intacct Help Center.
Returns a collection with a key, ID, and link for each statistical adjustment journal. This operation is mostly for use in testing; use the query service to find journals that meet certain criteria and to specify the properties that you want in the response.
OK
Bad Request
{- "ia::result": [
- {
- "key": "36",
- "id": "STAT-ADJ",
- "href": "/objects/general-ledger/statistical-adjustment-journal/36"
}, - {
- "key": "34",
- "id": "EMP-TIME-ADJ",
- "href": "/objects/general-ledger/statistical-adjustment-journal/34"
}, - {
- "key": "35",
- "id": "EMP-CNT-ADJ",
- "href": "/objects/general-ledger/statistical-adjustment-journal/35"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Creates a new statistical adjustment journal.
id required | string Unique identifier for the statistical adjustment journal. Example: "ADJ-2025" |
name required | string Name of the statistical adjustment journal. Example: "Adjustment entry journal 2025" |
disallowDirectPosting | boolean Default: false Set to Example: false |
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": "STAT-ADJ",
- "name": "Statistical Adjustment Journal",
- "status": "active"
}
{- "ia::result": {
- "key": "36",
- "id": "STAT-ADJ",
- "href": "/objects/general-ledger/statistical-adjustment-journal/88"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified statistical adjustment journal.
key required | string System-assigned key for the statistical adjustment journal. Example: 134 |
OK
Bad Request
{- "ia::result": {
- "id": "STAT-ADJ",
- "name": "Statistical Adjustment Journal",
- "status": "active",
- "disallowDirectPosting": false,
- "audit": {
- "createdDateTime": "2025-03-27T16:13:03Z",
- "modifiedDateTime": "2025-03-27T16:13:03Z",
- "createdByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}, - "modifiedByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}
}, - "key": "36",
- "href": "/objects/general-ledger/statistical-adjustment-journal/36"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing statistical adjustment journal by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for the statistical adjustment journal. Example: 134 |
name | string Name of the statistical adjustment journal. Example: "Adjustment entry journal 2025" |
disallowDirectPosting | boolean Default: false Set to Example: false |
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
{- "name": "Statistical Adjustment Journal",
- "status": "active"
}
{- "ia::result": {
- "key": "36",
- "id": "STAT-ADJ",
- "href": "/objects/general-ledger/statistical-adjustment-journal/36"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes a statistical adjustment journal.
key required | string System-assigned key for the statistical adjustment journal. Example: 134 |
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
}
}