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 TopResponse
Supported Media Types
- application/json
Default Response
Root Schema : Account Settings
Type:
objectTitle:
Show Source
Account Settings-
endpoint:
string
The endpoint URL assciated with Auth Token.
-
fileSystemLocation:
string
Path to the file system location associated with the account.
-
includedImages:
array includedImages
List of URLs to included images.
-
name:
string
Username
-
unsubscribeHandler:
string
URL to Unsubscribe Handler
Nested Schema : includedImages
Type:
arrayList of URLs to included images.
Show Source
-
Array of:
string
URL path to included image.
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"
}