General Ledgers
Retrieve a General Ledger from Basecone by it's unique identifier.
GET GeneralLedgers/:id
General Ledger properties
Property | Type | Description |
---|---|---|
id | Guid | Unique identifier of General Ledger |
code | string | Code of General Ledger |
name | string | Name of General Ledger |
externalId | string | External identifier from accounting system |
labels | list | Translation of general ledger if supported |
metaData | list | extra information about the general ledger |
Example response:
{ "id": "68d300bc-ef23-4d0e-9029-a6ad3af4301b", "code": "300000", "name": "Name", "externalId": "c5febd7f-1d65-47c9-b46f-00b780f9241a", "labels": [ { "culture": "de-DE", "label": "Name" }, { "culture": "en-GB", "label": "Name" }, { "culture": "fr-FR", "label": "Nom" }, { "culture": "nl-BE", "label": "Naam" } ], "metaData": { "vatPercentage": "0,00", "nonVatPercentage": "0,00" }, "links": [ { "rel": "self", "href": "https://api.basecone.com/v1/generalledgers/68d300bc-ef23-4d0e-9029-a6ad3af4301b" } ], "company": { "companyId": "34d743b1-bbf3-46bb-b1e1-e28c899e7869", "companyCode": "DEMO", "_links": [ { "rel": "self", "href": "https://api.basecone.com/v1/companies/34d743b1-bbf3-46bb-b1e1-e28c899e7869" } ] } }