GET/workflow/linkage-codes/{linkageCodeKey}/linkage-code-items
入力値リストの入力値の一覧を取得する。
本 API の利用には、申請フォーマットの入力値リスト管理 メニューへのアクセス権限が必要となる。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
workflow
workflow.read
| Parameter | Type | Description |
|---|---|---|
| linkageCodeKey | string | 入力値リストのリスト管理コード required |
| Parameter | Type | Description |
|---|---|---|
| count | integer | 取得数 default : 100 minimum : 1 maximum : 200 format : int32 |
| cursor | string | リストのカーソル値 (URL エンコードする) |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
入力値の一覧データ
| Property | Type | Description |
|---|---|---|
| linkageCodeItems | array (LinkageCodeItem) | 入力値の一覧 |
| responseMetaData | object (responseMetaData) | レスポンスのメタデータ |
| Property | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID format : int32 |
| linkageCodeKey | string | 入力値リストのリスト管理コード |
| linkageCodeName | string | 入力値リストのコード名 |
| enabledLinkageCode | boolean | 入力値リストの有効フラグ |
| linkageCodeItemId | string | 入力値コード |
| linkageCodeItemName | string | 入力値 |
| i18nNames | array (I18nName) | 多国語名リスト |
| enabledLinkageCodeItem | boolean | 入力値の有効フラグ |
| Property | Type | Description |
|---|---|---|
| name | string | 多国語表示名 required minLength : 1 maxLength : 100 |
| language | string | 多国語言語コード required Allowed values : ja_JP, ko_KR, en_US, zh_CN, zh_TW |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 次のリスト取得時に使用するカーソル値 |
example
1{2 "linkageCodeItems": [3 {4 "domainId": 10000001,5 "linkageCodeKey": "vegetables",6 "linkageCodeName": "野菜",7 "enabledLinkageCode": true,8 "linkageCodeItemId": "carrot",9 "linkageCodeItemName": "人参",10 "i18nNames": [11 {12 "language": "ja_JP",13 "name": "人参"14 },15 {16 "language": "en_US",17 "name": "carrot"18 },19 {20 "language": "ko_KR",21 "name": "당근"22 }23 ],24 "enabledLinkageCodeItem": true25 }26 ],27 "responseMetaData": {28 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="29 }30}Not Found