# \SectionsApi All URIs are relative to *https://api.freee.co.jp* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_section**](SectionsApi.md#create_section) | **POST** /api/1/sections | 部門の作成 [**destroy_section**](SectionsApi.md#destroy_section) | **DELETE** /api/1/sections/{id} | 部門の削除 [**get_section**](SectionsApi.md#get_section) | **GET** /api/1/sections/{id} | 部門の取得 [**get_sections**](SectionsApi.md#get_sections) | **GET** /api/1/sections | 部門一覧の取得 [**update_section**](SectionsApi.md#update_section) | **PUT** /api/1/sections/{id} | 部門の更新 ## create_section > crate::models::SectionResponse create_section(section_params) 部門の作成

概要

指定した事業所の部門を作成する

レスポンスの例

// プレミアムプラン(個人)、ベーシックプラン以上(法人) {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123",     "indent_count": 1,     "parent_id": 101   } } // それ以外のプラン {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123"   } }
### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **section_params** | Option<[**SectionParams**](SectionParams.md)> | 部門の作成 | | ### Return type [**crate::models::SectionResponse**](sectionResponse.md) ### Authorization [oauth2](../README.md#oauth2) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) ## destroy_section > destroy_section(id, company_id) 部門の削除

概要

指定した事業所の部門を削除する

### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **id** | **i32** | | [required] | **company_id** | **i32** | 事業所ID | [required] | ### Return type (empty response body) ### Authorization [oauth2](../README.md#oauth2) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) ## get_section > crate::models::SectionResponse get_section(id, company_id) 部門の取得

概要

指定した事業所の部門を取得する

レスポンスの例

// プレミアムプラン(個人)、ベーシックプラン以上(法人) {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "long_name": "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123",     "indent_count": 1,     "parent_id": 101   } } // それ以外のプラン {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "long_name": "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123"   } }
### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **id** | **i32** | 部門ID | [required] | **company_id** | **i32** | 事業所ID | [required] | ### Return type [**crate::models::SectionResponse**](sectionResponse.md) ### Authorization [oauth2](../README.md#oauth2) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) ## get_sections > crate::models::GetSections200Response get_sections(company_id) 部門一覧の取得

概要

指定した事業所の部門一覧を取得する

レスポンスの例

GET https://api.freee.co.jp/api/1/sections?company_id=1

// プレミアムプラン(個人)、ベーシックプラン以上(法人) {   "sections" : [     {       "id" : 101,       "company_id" : 1,       "name" : "開発部門",       "long_name": "開発部門",       "shortcut1" : "DEVELOPER",       "shortcut2" : "123",       "indent_count": 1,       "parent_id": 11     },     ...   ] } // それ以外のプラン {   "sections" : [     {       "id" : 101,       "company_id" : 1,       "name" : "開発部門",       "long_name": "開発部門",       "shortcut1" : "DEVELOPER",       "shortcut2" : "123"     },     ...   ] }
### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **company_id** | **i32** | 事業所ID | [required] | ### Return type [**crate::models::GetSections200Response**](get_sections_200_response.md) ### Authorization [oauth2](../README.md#oauth2) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) ## update_section > crate::models::SectionResponse update_section(id, section_params) 部門の更新

概要

指定した事業所の部門を更新する

レスポンスの例

// プレミアムプラン(個人)、ベーシックプラン以上(法人) {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "long_name": "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123",     "indent_count": 1,     "parent_id": 101   } } // それ以外のプラン {   "section" : {     "id" : 102,     "company_id" : 1,     "name" : "開発部門",     "long_name": "開発部門",     "shortcut1" : "DEVELOPER",     "shortcut2" : "123"   } }
### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **id** | **i32** | | [required] | **section_params** | Option<[**SectionParams**](SectionParams.md)> | 部門の更新 | | ### Return type [**crate::models::SectionResponse**](sectionResponse.md) ### Authorization [oauth2](../README.md#oauth2) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)