GET/users/{userId}
ユーザーのメールアドレス情報を取得する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
user.email.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | ユーザーを特定する ID (URL エンコードする)
required example : userf7da-f82c-4284-13e7-030f3b4c756x |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| userId | string | ユーザー ID
readOnly : true |
| string | ログイン ID = メールアドレス maxLength : 90 readOnly : true |
example
1{2 "userId": "userf7da-f82c-4284-13e7-030f3b4c756x",3 "email": "localpart@example.com"4}Not Found