Skip to content
This repository has been archived by the owner on Dec 6, 2018. It is now read-only.

[API] User API

mayah edited this page Jun 29, 2012 · 1 revision
  • User API

    User API は、ユーザーの情報を取得するための API です。

GET /api/user/get

ユーザーを取得します。

ログイン    不要
パラメータ
    userId ID required ユーザー ID
レスポンス
    UserEx

GET /api/user/events

ユーザーが開催しているイベントリストを返します。

  下書き状態のイベントあるいはパスコード制限されたイベントは除外されます。

ログイン    不要
パラメータ
    userId ID required ユーザー ID
    queryType string required
    offset int optional
    limit int optional
レスポンス
    eventStatuses array[EventStatus]
    totalEventCount int

GET /api/user/tickets

ユーザーが登録しているチケットのリストを返します。

  パスコード制限されたイベントのチケットは除外されます。

ログイン    不要
パラメータ
    userId ID required ユーザー ID
    offset int optional
    limit int optional
レスポンス
    ticketStatuses array[TicketStatus]
    totalTicketCount int

GET /api/user/search

  ユーザーをアカウントの先頭文字列から検索します。

ログイン    不要
パラメータ
    userNamePrefix string required 
    limit int optional
レスポンス
    users array[UserEx]