Template settings
Get email template settings
GET https://api.bigcommerce.com/stores/{store_hash}/v3/marketing/abandoned-cart-emails/settingsRequest
Read Abandoned Cart Email Template settings.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- channel_id in query - integerrequiredChannel ID to use for channel-specific settings.
example
curl --request GET \
--url 'https://api.bigcommerce.com/stores/[store_hash]/v3/marketing/abandoned-cart-emails/settings' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Auth-Token: {{token}}'
Response
OK
Body
object | application/json
use_globalboolean
requiredBoolean value that specifies the inheritance state.
example
{
"use_global": true
}
Update email template settings
PUT https://api.bigcommerce.com/stores/{store_hash}/v3/marketing/abandoned-cart-emails/settingsRequest
Update Abandoned Cart Email template settings.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- channel_id in query - integerChannel ID to use for channel-level data.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
object | application/json
use_globalboolean
requiredBoolean value that specifies the inheritance state.
example
{
"use_global": true
}
Response
OK
Body
object | application/json
use_globalboolean
requiredBoolean value that specifies the inheritance state.
example
{
"use_global": true
}
Did you find what you were looking for?