Skip to content

Data api resource users

Taku AMANO edited this page Aug 6, 2013 · 2 revisions
Property Name Type Data Type Database Column Private Read Only Description
id value unsigned integer mt_author.author_id Y Y The unique ID for this user.
name value string mt_author.author_name Y Y The login ID for this user. Only system administrator can get other user's name.
displayName value string mt_author.author_nickname The public display name for this user.
email value string mt_author.author_email Y The email address for this user.
url value string mt_author.author_url The web site URL for this user.
userpicUrl value sring Y The profile photo URL for this user. The userpic will be made by UserpicThumbnailSize and UserpicAllowRect settings. If user does not set own userpic, will be returned empty string.
language value string mt_author.author_preferred_language Y The display language for this user.
Values
de
en-us
es
fr
nl
ja
updatable value boolean
true
The user who accessed can update this user.
false
The user who accessed cannot update this user.

Example


{
  "id" : 1,
  "name" : "melody",
  "displayName" : "Melody Nelson",
  "email" : "melody@example.com",
  "url" : "http://melody.example.com",
  "userpicUrl" : "http://example.com/support/userpic/user-01-50x50-1.jpg",
  "language" : "ja",
  "updatable": true
}
Clone this wiki locally