試算表レスポンスデータの分類名変更について

会計freee API の試算表のレスポンスデータについて、特定の条件でGETした場合の分類名に変更が行われます。開発者の皆様は、必要に応じてアプリの改修のご検討をお願い申し上げます。

仕様変更の理由:

会計freeeの機能改善を行うため。

仕様変更リリース予定日:

2020年1月上旬

仕様変更の詳細:

試算表レスポンスデータの分類名変更

試算表データを取得するエンドポイント「/reports」に対して「account_item_display_type=group」を指定してGETした際、レスポンスデータに含まれている分類名の変更が行われます。

対象エンドポイントと条件:

/reports の下記エンドポイントに対して、勘定科目の表示を決算書表示名(小カテゴリー)とするためのパラメータ「account_item_display_type=group」を付与してGETリクエストを行なった場合、レスポンスデータに含まれる分類名が変更される

  • /reports/trial_bs
  • /reports/trial_bs_two_years
  • /reports/trial_bs_three_years

変更前のレスポンスデータ例:

{
    "trial_bs": {
        "company_id": "26",
        "fiscal_year": 2019,
        "account_item_display_type": "group",
        "breakdown_display_type": "account_item",
        "created_at": "2019-11-20T18:24:58+09:00",
        "balances": [
            {
                "account_category_id": 36,
                "account_category_name": "現金・預金",
                "total_line": true,
                "hierarchy_level": 3,
                "opening_balance": 0,
                "debit_amount": 77981000,
                "credit_amount": 42076000,
                "closing_balance": 35905000,
                "composition_ratio": 93.55
            },

変更後のレスポンスデータ例:

{
    "trial_bs": {
        "company_id": "26",
        "fiscal_year": 2019,
        "account_item_display_type": "group",
        "breakdown_display_type": "account_item",
        "created_at": "2019-11-20T18:24:58+09:00",
        "balances": [
            {
                "account_category_id": 36,
                "account_category_name": "現金及び預金",
                "total_line": true,
                "hierarchy_level": 3,
                "opening_balance": 0,
                "debit_amount": 77981000,
                "credit_amount": 42076000,
                "closing_balance": 35905000,
                "composition_ratio": 93.55
            },

アプリの変更について:

開発中のアプリが、「/reports」の各種エンドポイントに対して、「account_item_display_type=group」を付与したGETリクエストを行なっており、分類名に関する処理を行なっている場合は、必要に応じて改修のご検討をお願いいたします。

================================================

freee developer support