GET/directory/custom-fields
カスタムフィールドリストを取得する。
注意
この API は2026年7月下旬を目処に提供終了を予定しています。今後は ユーザーカスタムプロパティリストの取得 を使用してください。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
directory
directory.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID (既定値: 認可ドメイン ID) example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| customFields | array (CustomField) | カスタムフィールドリスト |
| Property | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID required format : int32 |
| customFieldId | string | カスタムフィールド ID
readOnly : true |
| customFieldExternalKey | string | カスタムフィールドキー (更新不可) maxLength : 100 nullable : true |
| customFieldName | string | カスタムフィールド名 required maxLength : 20 |
| customFieldType | string | カスタムフィールドタイプ (更新不可)
required Allowed values : STRING, LINK |
| displayOrder | integer | 表示順位 (重複許可) format : int32 |
example
1{2 "customFields": [3 {4 "domainId": 10000001,5 "customFieldId": "customfd-fc09-4a57-ab38-03dc6c425e09",6 "customFieldExternalKey": "CUSTOMFIELDEXT01",7 "customFieldName": "custom01",8 "customFieldType": "LINK",9 "displayOrder": 110 }11 ]12}Not Found