概要
他APIのリクエストパラメーターとして利用する、カスタムフィールドの情報を取得するAPIです。
EQ管理画面で設定できるカスタムメタデータ設定の情報を取得できます。
API URL
https://api-analytics.stream.jp/customField/getList
リクエスト通信仕様
- プロトコル:POST
- Content-Type : application/json
■パラメータ
リクエスト時のパラメーターは不要です。
レスポンス通信仕様
- Content-Type : application/json
■パラメータ
| No. | 項目名 | 説明 | 属性 | 備考 | |
| 1 | response_code | レスポンスコード | int | 成功時は0 エラー時は9 | |
| 2 | custom_field_list | カスタムフィールド一覧 | array | ||
| cid | 顧客ID | int | |||
| cmid | カスタムメタID | int | 1~5 | ||
| custom_name | カスタムメタ名 | string | |||
■レスポンスサンプル
| { "count": 3, "group_list": [ { "cid": 0000, "cmid": 1, "group_name": "カスタムフィールドA" }, { "cid": 0000, "cmid": 2, "group_name": "カスタムフィールドB" }, { "cid": 0000, "cmid": 3, "group_name": "カスタムフィールドC" } ], "response_code": 0 } |