getBasicAuthConfiguration

get

/ccadmin/v1/merchant/basicAuth

Get Basic Auth Configuration. Gets basic authentication configuration. The basic auth system is meant to prevent acciddental access to servers, and is not intended to be a highly secure.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getBasicAuthConfiguration_response
Nested Schema : ipRangesWhitelist
Type: array
Represents client IP addresses or ranges of client IP addresses that are whitelisted and therefore do not have to provide basic auth authentication. IPv4 and IPv6 addresses are supported. Ranges are specified via a pair of IP addresses using '-' as a separator, or specified via CIDR notation. DNS/host names are not supported.
Nested Schema : neverAuthenticateTargetHostNames
Type: array
Target host names that will be excluded from basic authentication. These are typically the customer facing host names ("mystore.com").
Nested Schema : passwords
Type: object
Valid username/password combinations.
Nested Schema : pathWhitelist
Type: array
Site relative paths (for example, "/v1/ccadmin/login") that are excluded from basic authentication.
Example application/json

{
    "neverAuthenticateTargetHostNames":[
        "mystore.com",
        "www.mystore.com"
    ],
    "ipRangesWhitelist":[
        "192.168.1.1 - 192.168.1.15"
    ],
    "passwords":{
        "admin":"admin"
    },
    "pathWhitelist":null,
    "realm":"Oracle Cloud Commerce Testing",
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccadmin/v1/merchant/basicAuth"
        }
    ],
    "enabled":true
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{
  "neverAuthenticateTargetHostNames": [
    "mystore.com",
    "www.mystore.com"
  ],
  "ipRangesWhitelist": ["192.168.1.1 - 192.168.1.15"],
  "passwords": {"admin": "admin"},
  "pathWhitelist": null,
  "realm": "Oracle Cloud Commerce Testing",
  "links": [{
    "rel": "self",
    "href": "http://localhost:9080/ccadmin/v1/merchant/basicAuth"
  }],
  "enabled": true
}