Get User Information
get
/rest/api/v1.3/user/info
Retrieves information for the user's account sending the request.
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
Default Response
Root Schema : User Information
Type:
objectTitle:
Show Source
User Information-
accountDisplayName:
string
Account display name.
-
accountName:
string
Account name.
-
accountTimeZone:
string
Account time zone.
-
createdDate:
string
User Creation Date.
-
userEmail:
string
Email Address of the user.
-
userLocale:
string
Locale of the user.
-
userName:
string
Username.
Examples
The following example shows how to retrieve account and user information.
| FIELDS | DESCRIPTION |
|---|---|
| Authorization | <AUTH_TOKEN> |
| Accept | application/json |
Sample Request URL:
/rest/api/v1.3/user/info
Sample Response: Success
{
"accountName": "oracleapi",
"userName": "oracle-api",
"userEmail": "ocxmarketing@oracle.com",
"userLocale": "en",
"accountDisplayName": "oracleapi",
"accountTimeZone": "Asia/Calcutta",
"createdDate": "2018-08-02"
}