Get Account Settings for a User

get

/rest/api/v1.3/settings/account

Retrieves account settings for the user sending the request.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Account Settings
Type: object
Title: Account Settings
Show Source
Nested Schema : includedImages
Type: array
List of URLs to included images.
Show Source
Back to Top

Examples

The following example shows how to retrieve all key account settings related to the account.

FIELDS DESCRIPTION
Authorization <AUTH_TOKEN>
Accept application/json

Sample Request URL:

/rest/api/v1.3/settings/account/endpoint
	

Sample Response: Success

{
  "name": "oracle-api",
  "endpoint": "https://XXXXXX-api.responsys.net",
  "fileSystemLocation": "/usr/responsys/site/accounts/oracleapi",
  "includedImages": [
    "https://assets-rsysqa1.qa.oraclersysdev.com/static/responsysimages/content",
    "https://assets-rsysqa1.qa.oraclersysdev.com/static/responsysimages"
  ],
  "unsubscribeHandler": "https://https://XXXXXX-api.responsys.net/pub/optout"
}
	
Back to Top