### Rate Limit Headers Example Source: https://developer.freee.co.jp/reference/accounting/reference Example of HTTP headers returned when rate limiting is applied to API requests, indicating usage limits and reset times. ```http x-ratelimit-limit:10 x-ratelimit-remaining:1 x-ratelimit-reset:2023-01-13T10:22:29+09:00 ``` -------------------------------- ### Get Deal API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a specific deal (income/expense) by its ID. ```http GET/api/1/deals/{id} ``` -------------------------------- ### Common Error Response Example Source: https://developer.freee.co.jp/reference/accounting/reference This JSON structure illustrates a common error response from the API, including status codes and detailed validation messages for developers. ```json { "status_code" : 400, "errors" : [ { "type" : "status", "messages" : ["不正なリクエストです。"] }, { "type" : "validation", "messages" : ["Date は不正な日付フォーマットです。入力例:2019-12-17"] } ] } ``` -------------------------------- ### Get Account Item API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a specific account item by its ID. ```http GET/api/1/account_items/{id} ``` -------------------------------- ### Get Company API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving details of a specific business (company) by its ID. ```http GET/api/1/companies/{id} ``` -------------------------------- ### Get Approval Request API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a specific approval request by its ID. ```http GET/api/1/approval_requests/{id} ``` -------------------------------- ### Get Approval Request Form API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a specific approval request form by its ID. ```http GET/api/1/approval_requests/forms/{id} ``` -------------------------------- ### Get Bank API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving details of a specific linked service (bank) by its ID. ```http GET/api/1/banks/{id} ``` -------------------------------- ### Get Approval Flow Route API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a specific approval flow route by its ID. ```http GET/api/1/approval_flow_routes/{id} ``` -------------------------------- ### Deals Source: https://developer.freee.co.jp/reference/accounting/reference 取引(収入・支出)の更新 ```APIDOC ## PUT /api/1/deals/{id} ### Description 取引(収入・支出)の更新 ### Method PUT ### Endpoint /api/1/deals/{id} ``` -------------------------------- ### Trial balance reports Source: https://developer.freee.co.jp/reference/accounting/reference Operations to retrieve various trial balance and financial reports. ```APIDOC ## GET /api/1/reports/trial_bs ### Description 貸借対照表の取得 ### Method GET ### Endpoint /api/1/reports/trial_bs ``` ```APIDOC ## GET /api/1/reports/trial_bs_two_years ### Description 貸借対照表(前年比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_bs_two_years ``` ```APIDOC ## GET /api/1/reports/trial_bs_three_years ### Description 貸借対照表(3期間比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_bs_three_years ``` ```APIDOC ## GET /api/1/reports/trial_pl ### Description 損益計算書の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl ``` ```APIDOC ## GET /api/1/reports/trial_pl_two_years ### Description 損益計算書(前年比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_two_years ``` ```APIDOC ## GET /api/1/reports/trial_pl_three_years ### Description 損益計算書(3期間比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_three_years ``` ```APIDOC ## GET /api/1/reports/trial_pl_sections ### Description 損益計算書(部門比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_sections ``` ```APIDOC ## GET /api/1/reports/trial_pl_segment_1_tags ### Description 損益計算書(セグメント1比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_segment_1_tags ``` ```APIDOC ## GET /api/1/reports/trial_pl_segment_2_tags ### Description 損益計算書(セグメント2比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_segment_2_tags ``` ```APIDOC ## GET /api/1/reports/trial_pl_segment_3_tags ### Description 損益計算書(セグメント3比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_pl_segment_3_tags ``` ```APIDOC ## GET /api/1/reports/trial_cr ### Description 製造原価報告書の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr ``` ```APIDOC ## GET /api/1/reports/trial_cr_two_years ### Description 製造原価報告書(前年比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_two_years ``` ```APIDOC ## GET /api/1/reports/trial_cr_three_years ### Description 製造原価報告書(3期間比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_three_years ``` ```APIDOC ## GET /api/1/reports/trial_cr_sections ### Description 製造原価報告書(部門比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_sections ``` ```APIDOC ## GET /api/1/reports/trial_cr_segment_1_tags ### Description 製造原価報告書(セグメント1比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_segment_1_tags ``` ```APIDOC ## GET /api/1/reports/trial_cr_segment_2_tags ### Description 製造原価報告書(セグメント2比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_segment_2_tags ``` ```APIDOC ## GET /api/1/reports/trial_cr_segment_3_tags ### Description 製造原価報告書(セグメント3比較)の取得 ### Method GET ### Endpoint /api/1/reports/trial_cr_segment_3_tags ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目の更新(存在しない場合は作成) ```APIDOC ## PUT /api/1/account_items/code/upsert ### Description 勘定科目の更新(存在しない場合は作成) ### Method PUT ### Endpoint /api/1/account_items/code/upsert ``` -------------------------------- ### Deals Source: https://developer.freee.co.jp/reference/accounting/reference 取引(収入・支出)一覧の取得 ```APIDOC ## GET /api/1/deals ### Description 取引(収入・支出)一覧の取得 ### Method GET ### Endpoint /api/1/deals ``` -------------------------------- ### Create Deal API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for creating a new deal (income/expense). ```http POST/api/1/deals ``` -------------------------------- ### Deals Source: https://developer.freee.co.jp/reference/accounting/reference 取引(収入・支出)の作成 ```APIDOC ## POST /api/1/deals ### Description 取引(収入・支出)の作成 ### Method POST ### Endpoint /api/1/deals ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目の更新 ```APIDOC ## PUT /api/1/account_items/{id} ### Description 勘定科目の更新 ### Method PUT ### Endpoint /api/1/account_items/{id} ``` -------------------------------- ### Deals Source: https://developer.freee.co.jp/reference/accounting/reference 取引(収入・支出)の削除 ```APIDOC ## DELETE /api/1/deals/{id} ### Description 取引(収入・支出)の削除 ### Method DELETE ### Endpoint /api/1/deals/{id} ``` -------------------------------- ### Deals Source: https://developer.freee.co.jp/reference/accounting/reference 取引(収入・支出)の取得 ```APIDOC ## GET /api/1/deals/{id} ### Description 取引(収入・支出)の取得 ### Method GET ### Endpoint /api/1/deals/{id} ``` -------------------------------- ### Approval flow routes Source: https://developer.freee.co.jp/reference/accounting/reference 申請経路一覧の取得 ```APIDOC ## GET /api/1/approval_flow_routes ### Description 申請経路一覧の取得 ### Method GET ### Endpoint /api/1/approval_flow_routes ``` -------------------------------- ### Approval flow routes Source: https://developer.freee.co.jp/reference/accounting/reference 申請経路の取得 ```APIDOC ## GET /api/1/approval_flow_routes/{id} ### Description 申請経路の取得 ### Method GET ### Endpoint /api/1/approval_flow_routes/{id} ``` -------------------------------- ### Create Account Item API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for creating a new account item. ```http POST/api/1/account_items ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目の削除 ```APIDOC ## DELETE /api/1/account_items/{id} ### Description 勘定科目の削除 ### Method DELETE ### Endpoint /api/1/account_items/{id} ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目の取得 ```APIDOC ## GET /api/1/account_items/{id} ### Description 勘定科目の取得 ### Method GET ### Endpoint /api/1/account_items/{id} ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目一覧の取得 ```APIDOC ## GET /api/1/account_items ### Description 勘定科目一覧の取得 ### Method GET ### Endpoint /api/1/account_items ``` -------------------------------- ### Account items Source: https://developer.freee.co.jp/reference/accounting/reference 勘定科目の作成 ```APIDOC ## POST /api/1/account_items ### Description 勘定科目の作成 ### Method POST ### Endpoint /api/1/account_items ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請一覧の取得 ```APIDOC ## GET /api/1/approval_requests ### Description 各種申請一覧の取得 ### Method GET ### Endpoint /api/1/approval_requests ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の更新 ```APIDOC ## PUT /api/1/approval_requests/{id} ### Description 各種申請の更新 ### Method PUT ### Endpoint /api/1/approval_requests/{id} ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の削除 ```APIDOC ## DELETE /api/1/approval_requests/{id} ### Description 各種申請の削除 ### Method DELETE ### Endpoint /api/1/approval_requests/{id} ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の取得 ```APIDOC ## GET /api/1/approval_requests/{id} ### Description 各種申請の取得 ### Method GET ### Endpoint /api/1/approval_requests/{id} ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の申請フォーム一覧の取得 ```APIDOC ## GET /api/1/approval_requests/forms ### Description 各種申請の申請フォーム一覧の取得 ### Method GET ### Endpoint /api/1/approval_requests/forms ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の作成 ```APIDOC ## POST /api/1/approval_requests ### Description 各種申請の作成 ### Method POST ### Endpoint /api/1/approval_requests ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の承認操作 ```APIDOC ## POST /api/1/approval_requests/{id}/actions ### Description 各種申請の承認操作 ### Method POST ### Endpoint /api/1/approval_requests/{id}/actions ``` -------------------------------- ### List Account Items API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of all account items. ```http GET/api/1/account_items ``` -------------------------------- ### Approval requests Source: https://developer.freee.co.jp/reference/accounting/reference 各種申請の申請フォームの取得 ```APIDOC ## GET /api/1/approval_requests/forms/{id} ### Description 各種申請の申請フォームの取得 ### Method GET ### Endpoint /api/1/approval_requests/forms/{id} ``` -------------------------------- ### List Deals API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of deals (income/expense). ```http GET/api/1/deals ``` -------------------------------- ### Create Approval Request API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for creating a new approval request. ```http POST/api/1/approval_requests ``` -------------------------------- ### Walletables API Source: https://developer.freee.co.jp/reference/accounting/reference Operations for managing wallet accounts, including creation, retrieval, update, and deletion. ```APIDOC ## DELETE /api/1/walletables/{type}/{id} ### Description Deletes a wallet account. ### Method DELETE ### Endpoint /api/1/walletables/{type}/{id} ``` ```APIDOC ## GET /api/1/walletables ### Description Retrieves a list of wallet accounts. ### Method GET ### Endpoint /api/1/walletables ``` ```APIDOC ## GET /api/1/walletables/{type}/{id} ### Description Retrieves a specific wallet account. ### Method GET ### Endpoint /api/1/walletables/{type}/{id} ``` ```APIDOC ## POST /api/1/walletables ### Description Creates a new wallet account. ### Method POST ### Endpoint /api/1/walletables ``` ```APIDOC ## PUT /api/1/walletables/{type}/{id} ### Description Updates an existing wallet account. ### Method PUT ### Endpoint /api/1/walletables/{type}/{id} ``` -------------------------------- ### Create Account Group API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for creating a '決算書表示名' (Financial Statement Display Name). ```http POST/api/1/account_groups ``` -------------------------------- ### List Approval Requests API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of all approval requests. ```http GET/api/1/approval_requests ``` -------------------------------- ### Banks Source: https://developer.freee.co.jp/reference/accounting/reference 連携サービスの取得 ```APIDOC ## GET /api/1/banks/{id} ### Description 連携サービスの取得 ### Method GET ### Endpoint /api/1/banks/{id} ``` -------------------------------- ### Users API Source: https://developer.freee.co.jp/reference/accounting/reference Operations for managing users within a business, including retrieving lists, specific users, and their capabilities. ```APIDOC ## GET /api/1/users ### Description Retrieves a list of users belonging to the business. ### Method GET ### Endpoint /api/1/users ``` ```APIDOC ## GET /api/1/users/me ### Description Retrieves information about the currently logged-in user. ### Method GET ### Endpoint /api/1/users/me ``` ```APIDOC ## GET /api/1/users/capabilities ### Description Retrieves the capabilities of the currently logged-in user. ### Method GET ### Endpoint /api/1/users/capabilities ``` ```APIDOC ## PUT /api/1/users/me ### Description Updates the information for the currently logged-in user. ### Method PUT ### Endpoint /api/1/users/me ``` -------------------------------- ### Items Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to items. ```APIDOC ## DELETE /api/1/items/{id} ### Description 品目の削除 ### Method DELETE ### Endpoint /api/1/items/{id} ``` ```APIDOC ## GET /api/1/items ### Description 品目一覧の取得 ### Method GET ### Endpoint /api/1/items ``` ```APIDOC ## GET /api/1/items/{id} ### Description 品目の取得 ### Method GET ### Endpoint /api/1/items/{id} ``` ```APIDOC ## POST /api/1/items ### Description 品目の作成 ### Method POST ### Endpoint /api/1/items ``` ```APIDOC ## PUT /api/1/items/{id} ### Description 品目の更新(存在しない場合は作成) ### Method PUT ### Endpoint /api/1/items/{id} ``` ```APIDOC ## PUT /api/1/items/code/upsert ### Description 品目の更新(作成) ### Method PUT ### Endpoint /api/1/items/code/upsert ``` -------------------------------- ### Account groups Source: https://developer.freee.co.jp/reference/accounting/reference 決算書表示名の作成 ```APIDOC ## POST /api/1/account_groups ### Description 決算書表示名の作成 ### Method POST ### Endpoint /api/1/account_groups ``` -------------------------------- ### Approve/Reject Approval Request API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for performing approval actions (e.g., approve, reject) on a specific approval request. ```http POST/api/1/approval_requests/{id}/actions ``` -------------------------------- ### User Matchers API Source: https://developer.freee.co.jp/reference/accounting/reference Operations for managing automatic registration rules, including creation, retrieval, update, and deletion. ```APIDOC ## DELETE /api/1/user_matchers/{id} ### Description Deletes an automatic registration rule. ### Method DELETE ### Endpoint /api/1/user_matchers/{id} ``` ```APIDOC ## GET /api/1/user_matchers ### Description Retrieves a list of automatic registration rules. ### Method GET ### Endpoint /api/1/user_matchers ``` ```APIDOC ## GET /api/1/user_matchers/{id} ### Description Retrieves a specific automatic registration rule. ### Method GET ### Endpoint /api/1/user_matchers/{id} ``` ```APIDOC ## POST /api/1/user_matchers ### Description Creates a new automatic registration rule. ### Method POST ### Endpoint /api/1/user_matchers ``` ```APIDOC ## PUT /api/1/user_matchers/{id} ### Description Updates an existing automatic registration rule. ### Method PUT ### Endpoint /api/1/user_matchers/{id} ``` -------------------------------- ### List Approval Flow Routes API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of approval flow routes. ```http GET/api/1/approval_flow_routes ``` -------------------------------- ### Tags Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to memo tags. ```APIDOC ## DELETE /api/1/tags/{id} ### Description メモタグの削除 ### Method DELETE ### Endpoint /api/1/tags/{id} ``` ```APIDOC ## GET /api/1/tags ### Description メモタグ一覧の取得 ### Method GET ### Endpoint /api/1/tags ``` ```APIDOC ## GET /api/1/tags/{id} ### Description メモタグの取得 ### Method GET ### Endpoint /api/1/tags/{id} ``` ```APIDOC ## POST /api/1/tags ### Description メモタグの作成 ### Method POST ### Endpoint /api/1/tags ``` ```APIDOC ## PUT /api/1/tags/{id} ### Description メモタグの更新 ### Method PUT ### Endpoint /api/1/tags/{id} ``` -------------------------------- ### Expense application line templates Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to expense application line templates. ```APIDOC ## DELETE /api/1/expense_application_line_templates/{id} ### Description 経費科目の削除 ### Method DELETE ### Endpoint /api/1/expense_application_line_templates/{id} ``` ```APIDOC ## GET /api/1/expense_application_line_templates ### Description 経費科目一覧の取得 ### Method GET ### Endpoint /api/1/expense_application_line_templates ``` ```APIDOC ## GET /api/1/expense_application_line_templates/{id} ### Description 経費科目の取得 ### Method GET ### Endpoint /api/1/expense_application_line_templates/{id} ``` ```APIDOC ## POST /api/1/expense_application_line_templates ### Description 経費科目の作成 ### Method POST ### Endpoint /api/1/expense_application_line_templates ``` ```APIDOC ## PUT /api/1/expense_application_line_templates/{id} ### Description 経費科目の更新 ### Method PUT ### Endpoint /api/1/expense_application_line_templates/{id} ``` -------------------------------- ### List Companies API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of businesses (companies). ```http GET/api/1/companies ``` -------------------------------- ### List Approval Request Forms API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of available approval request forms. ```http GET/api/1/approval_requests/forms ``` -------------------------------- ### Banks Source: https://developer.freee.co.jp/reference/accounting/reference 連携サービス一覧の取得 ```APIDOC ## GET /api/1/banks ### Description 連携サービス一覧の取得 ### Method GET ### Endpoint /api/1/banks ``` -------------------------------- ### Selectables Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to selectable items for forms. ```APIDOC ## GET /api/1/forms/selectables ### Description フォーム用選択項目情報の取得 ### Method GET ### Endpoint /api/1/forms/selectables ``` -------------------------------- ### List Banks API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for retrieving a list of linked services (banks). ```http GET/api/1/banks ``` -------------------------------- ### Payment requests Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to payment requests. ```APIDOC ## DELETE /api/1/payment_requests/{id} ### Description 支払依頼の削除 ### Method DELETE ### Endpoint /api/1/payment_requests/{id} ``` ```APIDOC ## GET /api/1/payment_requests ### Description 支払依頼一覧の取得 ### Method GET ### Endpoint /api/1/payment_requests ``` ```APIDOC ## GET /api/1/payment_requests/{id} ### Description 支払依頼の取得 ### Method GET ### Endpoint /api/1/payment_requests/{id} ``` ```APIDOC ## POST /api/1/payment_requests ### Description 支払依頼の作成 ### Method POST ### Endpoint /api/1/payment_requests ``` ```APIDOC ## POST /api/1/payment_requests/{id}/actions ### Description 支払依頼の承認操作 ### Method POST ### Endpoint /api/1/payment_requests/{id}/actions ``` ```APIDOC ## PUT /api/1/payment_requests/{id} ### Description 支払依頼の更新 ### Method PUT ### Endpoint /api/1/payment_requests/{id} ``` -------------------------------- ### Companies Source: https://developer.freee.co.jp/reference/accounting/reference 事業所の取得 ```APIDOC ## GET /api/1/companies/{id} ### Description 事業所の取得 ### Method GET ### Endpoint /api/1/companies/{id} ``` -------------------------------- ### Fixed assets Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to fixed assets. ```APIDOC ## GET /api/1/fixed_assets ### Description 固定資産一覧の取得 ### Method GET ### Endpoint /api/1/fixed_assets ``` -------------------------------- ### Expense applications Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to expense applications. ```APIDOC ## DELETE /api/1/expense_applications/{id} ### Description 経費申請の削除 ### Method DELETE ### Endpoint /api/1/expense_applications/{id} ``` ```APIDOC ## GET /api/1/expense_applications ### Description 経費申請一覧の取得 ### Method GET ### Endpoint /api/1/expense_applications ``` ```APIDOC ## GET /api/1/expense_applications/{id} ### Description 経費申請詳細の取得 ### Method GET ### Endpoint /api/1/expense_applications/{id} ``` ```APIDOC ## POST /api/1/expense_applications ### Description 経費申請の作成 ### Method POST ### Endpoint /api/1/expense_applications ``` ```APIDOC ## POST /api/1/expense_applications/{id}/actions ### Description 経費申請の承認操作 ### Method POST ### Endpoint /api/1/expense_applications/{id}/actions ``` ```APIDOC ## PUT /api/1/expense_applications/{id} ### Description 経費申請の更新 ### Method PUT ### Endpoint /api/1/expense_applications/{id} ``` ```APIDOC ## PUT /api/1/expense_applications/{id}/parent_approvable_requests ### Description 経費申請に関連付ける各種申請の更新 ### Method PUT ### Endpoint /api/1/expense_applications/{id}/parent_approvable_requests ``` -------------------------------- ### Partners Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to partners. ```APIDOC ## DELETE /api/1/partners/{id} ### Description 取引先の削除 ### Method DELETE ### Endpoint /api/1/partners/{id} ``` ```APIDOC ## GET /api/1/partners ### Description 取引先一覧の取得 ### Method GET ### Endpoint /api/1/partners ``` ```APIDOC ## GET /api/1/partners/{id} ### Description 取引先の取得 ### Method GET ### Endpoint /api/1/partners/{id} ``` ```APIDOC ## POST /api/1/partners ### Description 取引先の作成 ### Method POST ### Endpoint /api/1/partners ``` ```APIDOC ## PUT /api/1/partners/{id} ### Description 取引先の更新 ### Method PUT ### Endpoint /api/1/partners/{id} ``` ```APIDOC ## PUT /api/1/partners/code/{code} ### Description 取引先コードでの取引先の更新 ### Method PUT ### Endpoint /api/1/partners/code/{code} ``` ```APIDOC ## PUT /api/1/partners/upsert_by_code ### Description 取引先の更新(存在しない場合は作成) ### Method PUT ### Endpoint /api/1/partners/upsert_by_code ``` -------------------------------- ### Receipts Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to receipt files (evidence files). ```APIDOC ## DELETE /api/1/receipts/{id} ### Description ファイルボックス(証憑ファイル)の削除 ### Method DELETE ### Endpoint /api/1/receipts/{id} ``` ```APIDOC ## GET /api/1/receipts ### Description ファイルボックス(証憑ファイル)一覧の取得 ### Method GET ### Endpoint /api/1/receipts ``` ```APIDOC ## GET /api/1/receipts/{id} ### Description ファイルボックス(証憑ファイル)の取得 ### Method GET ### Endpoint /api/1/receipts/{id} ``` ```APIDOC ## GET /api/1/receipts/{id}/download ### Description ファイルボックス(証憑ファイル)のダウンロード ### Method GET ### Endpoint /api/1/receipts/{id}/download ``` ```APIDOC ## POST /api/1/receipts ### Description ファイルボックス(証憑ファイル)のアップロード ### Method POST ### Endpoint /api/1/receipts ``` ```APIDOC ## PUT /api/1/receipts/{id} ### Description ファイルボックス(証憑ファイル)の更新 ### Method PUT ### Endpoint /api/1/receipts/{id} ``` -------------------------------- ### Companies Source: https://developer.freee.co.jp/reference/accounting/reference 事業所一覧の取得 ```APIDOC ## GET /api/1/companies ### Description 事業所一覧の取得 ### Method GET ### Endpoint /api/1/companies ``` -------------------------------- ### Update Deal API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for updating an existing deal (income/expense) by its ID. ```http PUT/api/1/deals/{id} ``` -------------------------------- ### Sections Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to sections (departments). ```APIDOC ## DELETE /api/1/sections/{id} ### Description 部門の削除 ### Method DELETE ### Endpoint /api/1/sections/{id} ``` ```APIDOC ## GET /api/1/sections ### Description 部門一覧の取得 ### Method GET ### Endpoint /api/1/sections ``` ```APIDOC ## GET /api/1/sections/{id} ### Description 部門の取得 ### Method GET ### Endpoint /api/1/sections/{id} ``` ```APIDOC ## POST /api/1/sections ### Description 部門の作成 ### Method POST ### Endpoint /api/1/sections ``` ```APIDOC ## PUT /api/1/sections/{id} ### Description 部門の更新 ### Method PUT ### Endpoint /api/1/sections/{id} ``` ```APIDOC ## PUT /api/1/sections/code/upsert ### Description 部門の更新(存在しない場合は作成) ### Method PUT ### Endpoint /api/1/sections/code/upsert ``` -------------------------------- ### Upsert Account Item API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for updating an account item, creating it if it does not exist. ```http PUT/api/1/account_items/code/upsert ``` -------------------------------- ### General ledgers Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to general ledgers. ```APIDOC ## GET /api/1/reports/general_ledgers ### Description 総勘定元帳一覧の取得(β版) ### Method GET ### Endpoint /api/1/reports/general_ledgers ``` -------------------------------- ### Wallet Transactions API Source: https://developer.freee.co.jp/reference/accounting/reference Operations for managing wallet transactions, including creation, retrieval, update, and deletion. ```APIDOC ## DELETE /api/1/wallet_txns/{id} ### Description Deletes a wallet transaction. ### Method DELETE ### Endpoint /api/1/wallet_txns/{id} ``` ```APIDOC ## GET /api/1/wallet_txns ### Description Retrieves a list of wallet transactions. ### Method GET ### Endpoint /api/1/wallet_txns ``` ```APIDOC ## GET /api/1/wallet_txns/{id} ### Description Retrieves a specific wallet transaction. ### Method GET ### Endpoint /api/1/wallet_txns/{id} ``` ```APIDOC ## POST /api/1/wallet_txns ### Description Creates a new wallet transaction. ### Method POST ### Endpoint /api/1/wallet_txns ``` -------------------------------- ### ManualJournals Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to manual journals. ```APIDOC ## DELETE /api/1/manual_journals/{id} ### Description 振替伝票の削除 ### Method DELETE ### Endpoint /api/1/manual_journals/{id} ``` ```APIDOC ## GET /api/1/manual_journals ### Description 振替伝票一覧の取得 ### Method GET ### Endpoint /api/1/manual_journals ``` ```APIDOC ## GET /api/1/manual_journals/{id} ### Description 振替伝票の取得 ### Method GET ### Endpoint /api/1/manual_journals/{id} ``` ```APIDOC ## POST /api/1/manual_journals ### Description 振替伝票の作成 ### Method POST ### Endpoint /api/1/manual_journals ``` ```APIDOC ## PUT /api/1/manual_journals/{id} ### Description 振替伝票の更新 ### Method PUT ### Endpoint /api/1/manual_journals/{id} ``` -------------------------------- ### Invoices Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to invoices. ```APIDOC ## GET /api/1/invoices ### Description 請求書一覧の取得 ### Method GET ### Endpoint /api/1/invoices ``` ```APIDOC ## GET /api/1/invoices/{id} ### Description 請求書の取得 ### Method GET ### Endpoint /api/1/invoices/{id} ``` -------------------------------- ### Quotations Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to quotations. ```APIDOC ## GET /api/1/quotations ### Description 見積書一覧の取得 ### Method GET ### Endpoint /api/1/quotations ``` ```APIDOC ## GET /api/1/quotations/{id} ### Description 見積書の取得 ### Method GET ### Endpoint /api/1/quotations/{id} ``` -------------------------------- ### Delete Account Item API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for deleting an account item. ```http DELETE/api/1/account_items/{id} ``` -------------------------------- ### Delete Deal API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for deleting a specific deal (income/expense) by its ID. ```http DELETE/api/1/deals/{id} ``` -------------------------------- ### Taxes Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to tax categories. ```APIDOC ## GET /api/1/taxes/codes ### Description 税区分一覧の取得(廃止予定) ### Method GET ### Endpoint /api/1/taxes/codes ``` ```APIDOC ## GET /api/1/taxes/codes/{code} ### Description 税区分の取得 ### Method GET ### Endpoint /api/1/taxes/codes/{code} ``` ```APIDOC ## GET /api/1/taxes/companies/{company_id} ### Description 指定した事業所の税区分一覧の取得 ### Method GET ### Endpoint /api/1/taxes/companies/{company_id} ``` -------------------------------- ### Transfers Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to transfer deals. ```APIDOC ## DELETE /api/1/transfers/{id} ### Description 取引(振替)の削除 ### Method DELETE ### Endpoint /api/1/transfers/{id} ``` ```APIDOC ## GET /api/1/transfers ### Description 取引(振替)一覧の取得 ### Method GET ### Endpoint /api/1/transfers ``` ```APIDOC ## GET /api/1/transfers/{id} ### Description 取引(振替)の取得 ### Method GET ### Endpoint /api/1/transfers/{id} ``` ```APIDOC ## POST /api/1/transfers ### Description 取引(振替)の作成 ### Method POST ### Endpoint /api/1/transfers ``` ```APIDOC ## PUT /api/1/transfers/{id} ### Description 取引(振替)の更新 ### Method PUT ### Endpoint /api/1/transfers/{id} ``` -------------------------------- ### Update Account Item API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for updating an existing account item by its ID. ```http PUT/api/1/account_items/{id} ``` -------------------------------- ### Payments Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to payment lines for deals (income/expense). ```APIDOC ## DELETE /api/1/deals/{id}/payments/{payment_id} ### Description 取引(収入・支出)の支払行の削除 ### Method DELETE ### Endpoint /api/1/deals/{id}/payments/{payment_id} ``` ```APIDOC ## POST /api/1/deals/{id}/payments ### Description 取引(収入・支出)の支払行の作成 ### Method POST ### Endpoint /api/1/deals/{id}/payments ``` ```APIDOC ## PUT /api/1/deals/{id}/payments/{payment_id} ### Description 取引(収入・支出)の支払行の更新 ### Method PUT ### Endpoint /api/1/deals/{id}/payments/{payment_id} ``` -------------------------------- ### Update Approval Request API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for updating an existing approval request by its ID. ```http PUT/api/1/approval_requests/{id} ``` -------------------------------- ### Segment tags Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to segment tags. ```APIDOC ## DELETE /api/1/segments/{segment_id}/tags/{id} ### Description セグメントタグの削除 ### Method DELETE ### Endpoint /api/1/segments/{segment_id}/tags/{id} ``` ```APIDOC ## GET /api/1/segments/{segment_id}/tags ### Description セグメントタグ一覧の取得 ### Method GET ### Endpoint /api/1/segments/{segment_id}/tags ``` ```APIDOC ## POST /api/1/segments/{segment_id}/tags ### Description セグメントタグの作成 ### Method POST ### Endpoint /api/1/segments/{segment_id}/tags ``` ```APIDOC ## PUT /api/1/segments/{segment_id}/tags/{id} ### Description セグメントタグの更新 ### Method PUT ### Endpoint /api/1/segments/{segment_id}/tags/{id} ``` ```APIDOC ## PUT /api/1/segments/{segment_id}/tags/code/upsert ### Description セグメントタグの更新(作成) ### Method PUT ### Endpoint /api/1/segments/{segment_id}/tags/code/upsert ``` -------------------------------- ### Journals Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to journals. ```APIDOC ## GET /api/1/journals ### Description 仕訳帳のダウンロード要求 ### Method GET ### Endpoint /api/1/journals ``` ```APIDOC ## GET /api/1/journals/reports/{id}/status ### Description 仕訳帳のステータスの取得 ### Method GET ### Endpoint /api/1/journals/reports/{id}/status ``` ```APIDOC ## GET /api/1/journals/reports/{id}/download ### Description 仕訳帳のダウンロード ### Method GET ### Endpoint /api/1/journals/reports/{id}/download ``` -------------------------------- ### Renews Source: https://developer.freee.co.jp/reference/accounting/reference Operations related to deal renewals (income/expense). ```APIDOC ## DELETE /api/1/deals/{id}/renews/{renew_id} ### Description 取引(収入・支出)の+更新の削除 ### Method DELETE ### Endpoint /api/1/deals/{id}/renews/{renew_id} ``` ```APIDOC ## POST /api/1/deals/{id}/renews ### Description 取引(収入・支出)の+更新の作成 ### Method POST ### Endpoint /api/1/deals/{id}/renews ``` ```APIDOC ## PUT /api/1/deals/{id}/renews/{renew_id} ### Description 取引(収入・支出)の+更新の更新 ### Method PUT ### Endpoint /api/1/deals/{id}/renews/{renew_id} ``` -------------------------------- ### Delete Approval Request API Source: https://developer.freee.co.jp/reference/accounting/reference Endpoint for deleting a specific approval request by its ID. ```http DELETE/api/1/approval_requests/{id} ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.