GET/users/{userId}/mail/mailfolders/{folderId}
Gets a specified folder's name.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
mail
mail.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | Member ID (must be URL-encoded)
required example : me |
| folderId | string | Folder ID required example : 1 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| folderName | string | Folder name required minLength : 1 |
| folderId | integer | Folder ID required format : int32 |
example
1{2 "folderId": 10001,3 "folderName": "test"4}