Statistical journal entry lines

Statistical journal entry lines represent transactions within a statistical journal entry and are created or updated by modifying the statistical journal-entry.

When adding a line item, you can post it immediately or save it as a draft, which can be edited and posted later.

List statistical journal entry lines

get/objects/general-ledger/statistical-journal-entry-line

Returns up to 100 statistical journal entry lines from the collection with a key, ID, and link for each entry. This operation is mostly for use in testing; use the query service to find journal entry lines that meet certain criteria and to specify the properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "127",
      • "id": "127",
      • "href": "/objects/general-ledger/statistical-journal-entry-line/127"
      },
    • {
      • "key": "128",
      • "id": "128",
      • "href": "/objects/general-ledger/statistical-journal-entry-line/128"
      },
    • {
      • "key": "129",
      • "id": "129",
      • "href": "/objects/general-ledger/statistical-journal-entry-line/129"
      },
    • {
      • "key": "130",
      • "id": "130",
      • "href": "/objects/general-ledger/statistical-journal-entry-line/130"
      },
    • {
      • "key": "131",
      • "id": "131",
      • "href": "/objects/general-ledger/statistical-journal-entry-line/131"
      }
    ],
  • "ia::meta": {
    • "totalCount": 5,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get a statistical journal entry line item

get/objects/general-ledger/statistical-journal-entry-line/{key}

Returns detailed information for a specified statistical journal entry line item.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the statistical journal entry line item.

Example: 2647
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "127",
    • "key": "127",
    • "statisticalJournalEntry": {
      • "id": "66",
      • "key": "66",
      • "href": "/objects/general-ledger/statistical-journal-entry/66"
      },
    • "lineNumber": 1,
    • "txnType": "increase",
    • "entryDate": "2024-03-05",
    • "statisticalAccount": {
      • "key": "1",
      • "id": "9001",
      • "name": "Root - Billable Utilized Statistical Account",
      • "href": "/objects/general-ledger/statistical-account/1"
      },
    • "dimensions": {
      • "department": {
        },
      • "location": {
        },
      • "project": {
        },
      • "customer": {
        },
      • "vendor": {
        },
      • "employee": {
        },
      • "item": {
        },
      • "class": {
        }
      },
    • "documentId": "Headcount_Increase_03_24",
    • "description": "Headcount Increase March 2024",
    • "numberOfUnits": 3,
    • "reconciliationGroup": {
      • "cleared": "false",
      • "clearingDate": "2024-03-05",
      • "reconciliationDate": "2024-03-05"
      },
    • "accountingPeriod": 5,
    • "allocation": {
      • "id": "12",
      • "key": "STAT_ALLOC",
      • "href": "/objects/general-ledger/txn-allocation-template/12"
      },
    • "audit": {
      • "createdDateTime": "2024-04-24T13:40:31Z",
      • "modifiedDateTime": "2024-04-24T13:40:31Z",
      • "createdBy": "1",
      • "modifiedBy": "1"
      },
    • "state": "posted",
    • "href": "/objects/general-ledger/statistical-journal-entry-line/127"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}