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 Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : User Information
Type: object
Title: User Information
Show Source
Back to Top

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"
}
	
Back to Top