HTTP Operation Type Object
Query fixedAssetCategories

Description

Configuration of accounting fixed asset categories used to classify fixed assets.
The Fixed Asset Categories resource allows you to retrieve all available categories and their settings.

  • Set up to classify tangible and intangible fixed assets.
  • Map each category to the related ledger, depreciation, depreciation expense, current value, and losses accounting accounts.

img

GraphQL Query
query {
  fixedAssetCategories(
    where: {
      type: { eq: TANGIBLE }
    }
  ) {
    edges {
      node {
        id
        creationDate
        modificationDate
        code
        name
        type
        ledgerAccountId
        ledgerAccount {code name}
        depreciationAccountId
        depreciationAccount {code name}
        depreciationExpenseAccountId
        depreciationExpenseAccount {code name}
        currentValueAccountId
        currentValueAccount {code name}
        lossesAccountId
        lossesAccount {code name}
      }
    }
  }
}

Example Response (type = TANGIBLE)

{
  "data": {
    "fixedAssetCategories": {
      "edges": [
        {
          "node": {
            "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
            "creationDate": "2026-01-15T10:00:00Z",
            "modificationDate": "2026-06-01T14:30:00Z",
            "code": "MAT",
            "name": "Machinery and equipment",
            "type": "TANGIBLE",
            "ledgerAccountId": "51d78706-4721-4f2f-a257-3b8c2dc7ee0b",
            "ledgerAccount": {
              "code": "215400",
              "name": "Matériel industriel"
            },
            "depreciationAccountId": "51d78706-46dd-4f2f-a257-3b8c2dc7ee0b",
            "depreciationAccount": {
              "code": "281540",
              "name": "Amortissements du matériel industriel"
            },
            "depreciationExpenseAccountId": "51d78706-4999-4f2f-a257-3b8c2dc7ee0b",
            "depreciationExpenseAccount": {
              "code": "681120",
              "name": "Dotations aux amortissements"
            },
            "currentValueAccountId": "51d78706-4aaa-4f2f-a257-3b8c2dc7ee0b",
            "currentValueAccount": {
              "code": "215400",
              "name": "Matériel industriel"
            },
            "lossesAccountId": "51d78706-4bbb-4f2f-a257-3b8c2dc7ee0b",
            "lossesAccount": {
              "code": "675000",
              "name": "Valeurs comptables des éléments d'actif cédés"
            }
          }
        },
        // ..............
      ]
    }
  }
}
Key Value
Authorization Bearer Current access Token How to find?
X-TenantId Current tenant id Why deprecated ?
X-OrganizationId Current organization Id How to find?
x-api-key Primary or secondary subscription key of your app How to find?

fixedAssetCategories

Fields Type Description
id UUID Id
creationDate DateTime Creation Date
modificationDate DateTime Modification Date
     
code String Category code
name String Category name
type
  • INTANGIBLE
  • TANGIBLE
Category type
ledgerAccount AccountingAccount Fields of AccountingAccount
ledgerAccountId UUID Id of ledgerAccount
depreciationAccount AccountingAccount Fields of AccountingAccount
depreciationAccountId UUID Id of depreciationAccount
depreciationExpenseAccount AccountingAccount Fields of AccountingAccount
depreciationExpenseAccountId UUID Id of depreciationExpenseAccount
currentValueAccount AccountingAccount Fields of AccountingAccount
currentValueAccountId UUID Id of currentValueAccount
lossesAccount AccountingAccount Fields of AccountingAccount
lossesAccountId UUID Id of lossesAccount
Info
  • type: Category classification used to drive business rules and UI grouping.
    • TANGIBLE - Tangible fixed assets.
    • INTANGIBLE - Intangible fixed assets.