マーケティングプラットフォームのリードマージ履歴情報を参照するためのAPIです。
visitor.getMergelog
メソッド | URL |
---|---|
GET | https://{domainname}/services/rest/visitor/mergelog |
パラメータ名 | 必須 | 内容 |
---|---|---|
search_key{cid} | オプション | 検索条件のキー項目 指定可能なキー項目は下記「検索条件に指定可能なカラム」参照 |
search_operator{cid} | オプション | “検索条件の比較演算子を指定 eq( = ), ne( != ), ge( >= ), gt( > ), le( <= ), lt( < ), like” |
search_value{cid} | オプション | 検索値 Nullを指定する場合は、何も指定しません。 例: search_value1= |
order | オプション | 並び順の項目 指定可能な並び順の項目は下記「検索条件・並び順に指定可能なカラム」参照 |
direction | オプション | 並び順を指定する 「asc」(昇順)または「desc」(降順) |
limit | オプション | 1回のリクエストで取得するレコード数 (最大1000) |
offset | オプション | レコードのオフセット |
カラム名 | 検索条件 | 並び順 | 内容 |
---|---|---|---|
Id | ○ | ○ | リード削除履歴ID |
VisitorMergeLogId | ○ | ○ | リードマージ履歴ID |
UpdatedVisitorId | ○ | ○ | 更新されたリードID |
OriginalUpdatedVisitorId | ○ | ○ | マージ前の更新されたリードID |
DeletedVisitorId | ○ | ○ | 削除されたリードID |
DateRegist | ○ | ○ | 登録日時(JST) YYYY-mm-ddTHH:MM:SS+09:00 |
DateUpdate | ○ | ○ | 更新日時(JST) YYYY-mm-ddTHH:MM:SS+09:00 |
LastupdateUserId | ○ | ○ | 更新者ユーザーID |
なし
なし
コード | 内容 |
---|---|
200 | 正常終了 |
なし
★ エレメント名:VisitorMergeLog ★ データ型:VisitorMergeLogType
カラム名 | データ型 | 内容 |
---|---|---|
Id | string | リード削除履歴ID |
VisitorMergeLogId | string | リードマージ履歴ID |
UpdatedVisitorId | string | 更新されたリードID |
OriginalUpdatedVisitorId | string | マージ前の更新されたリードID |
DeletedVisitorId | string | 削除されたリードID |
DateRegist | dateTime | 登録日時(JST) YYYY-mm-ddTHH:MM:SS+09:00 |
DateUpdate | dateTime | 更新日時(JST) YYYY-mm-ddTHH:MM:SS+09:00 |
LastupdateUserId | string | 更新者ユーザーID |
なし
<?xml version="1.0" encoding="UTF-8"?>
<VisitorMergeLogList xmlns="http://smartseminar.jp/" version="1.45">
<VisitorMergeLog>
<Id>3</Id>
<LastupdateUserId>1</LastupdateUserId>
<VisitorMergeLogId>2</VisitorMergeLogId>
<DateRegist>2016-09-02T17:50:50+09:00</DateRegist>
<OriginalUpdatedVisitorId>6</OriginalUpdatedVisitorId>
<DateUpdate>2016-09-02T17:50:50+09:00</DateUpdate>
<UpdatedVisitorId>6</UpdatedVisitorId>
<DeletedVisitorId>8</DeletedVisitorId>
</VisitorMergeLog>
</VisitorMergeLogList>
なし