Retrieve the properties and relationships of a general ledger entry object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
GET businesscentralPrefix/companies({id})/generalLedgerEntries({id})
Request headers
| Header | Value | 
|---|---|
| Authorization | Bearer. Required. | 
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and a generalLedgerEntries object in the response body.
Example
Request
Here's an example of the request.
GET https://{businesscentralPrefix}/api/v2.0/companies({id})/generalLedgerEntries({id})
Response
Here's an example of the response.
Note
The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
{
    "id": "9dd7b4dc-44e3-ea11-bb43-000d3a2feca1",
    "entryNumber": 1,
    "postingDate": "2019-01-15",
    "documentNumber": "PS-INV103001",
    "documentType": " ",
    "accountId": "aaa5738a-44e3-ea11-bb43-000d3a2feca1",
    "accountNumber": "10700",
    "description": "Direct Cost 20000 on 01/15/19",
    "debitAmount": 0,
    "creditAmount": 128.4,
    "lastModifiedDateTime": "2020-08-21T00:25:56.383Z"
}