search/contentsholder/postEvents.list
イベントの一覧を取得
URL
GET /v1.0/search/contentsholder/postEvents.list
パラメータ
名前 | 必須 | デフォルト値 | 説明 |
---|---|---|---|
since | 任意 | - | イベントの取得開始日時。2018年1月1日以降で現在から90日前までを指定可能。 |
cursor | 任意 | - | イベントの取得開始位置。前回取得したnext_cursorの値を指定。 |
offset | 任意 | 0 | 取得開始位置。0~1000の範囲で指定。2019年1月31日で削除予定 |
limit | 任意 | 10 | 取得件数。1~100の範囲で指定。 |
direction | 任意 | desc | 並び替えの方向。created_atの昇順ならasc、降順ならdescを指定。 |
unit_ids | 任意 | - | コンテンツホルダー・ユニットのIDによる絞り込み。5つまで指定可能。 |
レスポンス
{
"ok": true,
"events": [
{
"id": "2431456019",
"action": "deleted",
"created_at": "2017-11-10T20:09:31+00:00",
"post": {
"id": "293992393838",
"title": "",
"subtitle": "",
"description": "",
"labels": [
{
"name": "さつまいも"
},
{
"name": "栗"
}
],
"auto_labels": [
"七草粥",
"かぼちゃ"
],
"thumbnail":{
},
"unit": {
"id": "1234567",
"name": "ノアドット新聞",
"status": "public",
"signature_color": "0123456",
"header_type": "border",
"header_position": "center",
"copyright_owner": "株式会社ノアドット新聞",
"website_url": "https://nordot.app/",
"twitter_url": "https://twitter.com/nordot_jp",
"facebook_url": "https://www.facebook.com/nordot/",
"instagram_url": "",
"youtube_url": "",
"line_url": "",
"introduction": "",
"created_at": "2015-11-17T01:54:20+00:00",
"updated_at": "2018-03-04T23:51:02+00:00",
"header_image":{
"url": "https://nordot-res.cloudinary.com/t_thumb_360/ch/units/1234567/header_15.png",
"url_w": 300,
"url_h": 60,
"thumb_360": "https://nordot-res.cloudinary.com/t_thumb_360/ch/units/1234567/header_15.png",
"square_300": "https://nordot-res.cloudinary.com/t_square_300/ch/units/1234567/header_15.png"
},
"profile_image":{
"url": "https://nordot-res.cloudinary.com/ch/units/1234567/profile_1.png",
"square_200": "https://nordot-res.cloudinary.com/t_square_200/ch/units/1234567/profile_1.png"
},
"publisher":{
"id": "0012345",
"name": "株式会社ノアドット新聞",
"created_at": "2015-11-17T01:52:24+00:00",
"updated_at": "2018-06-15T09:07:50+00:00"
},
"language": "ja-JP",
"timezone": "Asia/Tokyo"
}
}
},
{
"id": "2431457102",
"action": "created",
"created_at": "2017-11-10T20:09:30+00:00",
"post": {
"id": "293934382294",
"title": "食欲の秋",
"subtitle": "",
"description": "食欲の秋到来。新米、さんま、栗、さつまいも、かぼちゃ、七草粥、もう...",
"labels": [
{
"name": "さつまいも"
},
{
"name": "栗"
}
],
"auto_labels": [
"七草粥",
"かぼちゃ"
],
"tags": [
"天気",
"ウェザーリポート"
],
"thumbnail":{
"id": "111111",
"url": "https://nordot-res.cloudinary.com/t_thumb_360/ch/images/111111/origin_1.jpg",
"created_at": "2018-09-21T04:03:57+00:00",
"updated_at": "2018-09-21T04:03:57+00:00"
},
"unit":{
...
}
}
},
{
"id": "2431457352",
"action": "updated",
"created_at": "2017-11-10T20:09:22+00:00",
"post": {
"id": "293931934943",
"title": "スポーツの秋",
"subtitle": "運動会",
"description": "なぜ秋か。その理由はハッキリとはわかっていない。おそらく",
"labels": [
{
"name": "運動会"
}
],
"auto_labels": [
"秋"
],
"tags": [
"天気",
"ウェザーリポート"
],
"thumbnail":{
"id": "111111",
"url": "https://nordot-res.cloudinary.com/t_thumb_360/ch/images/111111/origin_1.jpg",
"created_at": "2018-09-21T04:03:57+00:00",
"updated_at": "2018-09-21T04:03:57+00:00"
},
"unit":{
...
}
}
},
...
],
"paging": {
"count": 10,
"offset": 0,
"limit": 10,
"has_next": true,
"total": 665136,
"next_cursor": "WzE0NDc0MDYxNzE0NjQsNTkyNTE0NjUwMzcwNDU0Nl0="
}
}
詳細は、search contentsholder postEventオブジェクトとpagingオブジェクトを参照してください。
totalは、10000件以上の場合は“10000”になります。
エラー
エラーコード | 説明 |
---|---|
invalid_since | 不正なsinceの指定 |
invalid_cursor | 不正なcursorの指定 |
invalid_offset | 不正なoffsetの指定 |
invalid_limit | 不正なlimitの指定 |
invalid_direction | 不正なdirectionの指定 |
上記以外のエラーは、共通エラーの項目を参照してください。