v31

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01251650.0 KB
users

チェックイン一覧の取得

指定したユーザーのチェックイン一覧を取得します。

get/v1/users/{name}/checkins

Path parameters

namestring required

ユーザー名

Query parameters

pageinteger

ページ番号

per_pageinteger

1ページあたりのアイテム数

has_linkboolean

オカズリンクを含むチェックインのみ取得

sincestring date
Example:2020-07-01

検索範囲の開始日

untilstring date
Example:2021-07-31

検索範囲の終了日

order'asc' | 'desc'

チェックイン日時の並び順

Response

成功

idinteger

チェックインID

checked_in_atstring date-time

チェックイン日時

tagsstring[]

タグ

linkstring

オカズリンク (http, https)

notestring

ノート

is_privateboolean

非公開チェックインとして設定

is_too_sensitiveboolean

チェックイン対象のオカズをより過激なオカズとして設定

discard_elapsed_timeboolean

前回チェックインからの経過時間を記録しない

source'web' | 'csv' | 'webhook' | 'api'

チェックインの登録元

Example response

[
  {
    "checked_in_at": "2020-07-21T19:19:19+0900",
    "tags": [
      "Example",
      "Example_2"
    ],
    "link": "http://example.com",
    "note": "すごく出た",
    "source": "api"
  }
]