Userオブジェクト

ユーザの情報を格納するオブジェクト

属性

  • id
    ユーザを一意に示すユニークなID。数字
  • login
    ユーザ名。一意な文字列。画面上変更が可
  • created_at
    登録日時
  • updated_at
    最終更新日時
  • locale
    表示言語。文字列
  • translator
    翻訳者かどうか
  • picture_url
    画像URL

Optional

  • email
    メールアドレス。
  • default_organization_id
    ユーザのデフォルトのグループID。数字
  • default_organization
    デフォルトグループのオブジェクト。配列

Example

{
  "id": 107,
  "login": "test10",
  "created_at": "2014-06-10T10:32:38.000+09:00",
  "updated_at": "2014-06-10T10:32:38.000+09:00",
  "locale": "en",
  "picture_url": "https://secure.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0.png?d=identicon&r=PG&s=48",
  "translator": false,
  "email": "test@example.com",
  "default_organization_id": 4,
  "default_organization": {
    "id": 4,
    "name": "test10",
    "plan_id": 1,
    "user_id": 107,
    "default": 1,
    "description": null,
    "created_at": "2014-06-10T10:32:38.000+09:00",
    "updated_at": "2014-06-10T10:32:39.000+09:00",
    "url": "https://biz.conyac.cc/api/v1/organizations/4",
    "html_url": "https://conyac.cc/b/organizations/4",
    "point": 100250,
    "available_point": 100250
  }
}