メインコンテンツまでスキップ

組織一覧の取得


説明

組織の一覧を取得します。

必要権限

なし

URL

GET /system/organizations

クエリパラメーター

名前必須か説明
namestring×名前
englishNamestring×英語名
codestring×コード
keywordstring×キーワード

以下のフィールドに指定したキーワードを持つ組織を取得します。
・名前
・英語名
・コード
depthint×取得するツリーの深さ
includeDeletedboolean×削除済みデータも取得対象とするか

true:削除されたデータを含めて取得します。
false:削除されていないデータのみを取得します。
isDeletedboolean×includeDeleted =trueのとき有効とします。

true:削除されたデータのみを取得します。
false:削除されていないデータのみを取得します。
limitint×データの最大取得件数
offsetint×何件目のデータから取得するか

省略した場合の既定値は 0 で先頭のデータから取得します。
orderbystring×並び替えに用いるフィールド

フィールド名の後の空白に続けて以下を指定することで、並び替えの順序指定ができます。
asc:昇順(既定値)
desc:降順

レスポンス

名前説明
totalCountint検索条件に該当する組織の総数
dataOrganization[]取得した組織の一覧

エラーケース

  • なし

特記事項

なし

サンプル

有効な組織を一覧で取得する

GET /system/organizations
Response
200 OK

{
"totalCount":19,
"data":[
{
"parentOrganizationId":null,
"name":"システム管理",
"englishName":"",
"code":"",
"description":"",
"treePath":"2/",
"treeDepth":0,
"displayOrder":0.5,
"isDeleted":false,
"id":"2",
"createdAt":"2019-01-10T07:29:19Z",
"createdBy":"0",
"updatedAt":"2019-01-10T07:29:19Z",
"updatedBy":"0"
},
{
"parentOrganizationId":"71",
"name":"営業1課",
"englishName":"",
"code":"",
"description":"",
"treePath":"69/71/4/",
"treeDepth":2,
"displayOrder":0.5,
"isDeleted":false,
"id":"4",
"createdAt":"2019-01-10T07:29:22Z",
"createdBy":"0",
"updatedAt":"2019-01-11T04:33:52Z",
"updatedBy":"21"
},



]
}

型定義

Organization

名前説明
idstring組織ID
parentOrganizationIdstring親の組織ID
namestring名前
englishNamestring英語名
codestringコード
descriptionstring説明
treePathstringツリーパス
treeDepthintツリーの深さ
subOrganizationsOrganization[]子組織
displayOrderdouble組織の表示順。
UIで表示する際の表示順序を示します。
isDeletedboolean削除されているか
createdAtDateTime作成日時
createdBystring作成者のユーザーID
updatedAtDateTime更新日時
updatedBystring更新者のユーザーID