getEmailNotificationTypes

get

/ccadmin/v1/email/notificationTypes

Get Email Notification Types. Get the email notification types.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : getEmailNotificationTypes_response
Type: object
Show Source
Nested Schema : items
Type: array
Email notification types
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : recommendationsPermittedStrategies
Type: array
Array of recommendation strategy keys permitted for this notification type
Show Source
Example Response (application/json)
{
    "forgotPassword":{
        "recommendationsSupported":false,
        "verificationStatus":1,
        "displayName":"Forgot Password Email",
        "recommendationsStrategy":null,
        "enabled":true,
        "fromEmail":"info@example.com",
        "recommendationsAllowAnyStrategy":true,
        "recommendationsRestriction":null,
        "fromName":"Forgot Password xx",
        "recommendationsAllowRestrictions":true,
        "includeRecommendations":false,
        "id":"forgot_password_v1",
        "numberOfRecommendations":3,
        "recommendationsPermittedStrategies":[
        ]
    },
    "account_registration_v1":{
        "recommendationsSupported":true,
        "verificationStatus":1,
        "displayName":"New Account Email",
        "recommendationsStrategy":"bestSellers",
        "enabled":true,
        "fromEmail":"info@example.com",
        "recommendationsAllowAnyStrategy":false,
        "recommendationsRestriction":null,
        "fromName":"New Account xx",
        "recommendationsAllowRestrictions":false,
        "includeRecommendations":true,
        "id":"account_registration_v1",
        "numberOfRecommendations":3,
        "recommendationsPermittedStrategies":[
            "topSellers"
        ]
    },
    "abandon_order_v1":{
        "recommendationsSupported":true,
        "verificationStatus":1,
        "displayName":"Abandon Order",
        "recommendationsStrategy":"blended",
        "enabled":true,
        "fromEmail":"info@example.com",
        "recommendationsAllowAnyStrategy":true,
        "recommendationsRestriction":"unrestricted",
        "fromName":"Abandon Order xx",
        "recommendationsAllowRestrictions":true,
        "includeRecommendations":true,
        "id":"abandon_order_v1",
        "numberOfRecommendations":3,
        "recommendationsPermittedStrategies":[
        ]
    }
}

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top