I’ve search for the whole Admin API to add capabilities to email template on behalf of my app.
But didn’t find anything I can do.
When examining admin.shopify.com/settings
network requests I’ve found these graphql requests, tested them too but without success.
mutation EmailTemplateUpdate($input: EmailTemplateUpdateInput!) {
emailTemplateUpdate(input: $input) {
emailTemplate {
id
name
title
bodyHtml
includeHtml
hasDefaultBody
hasDefaultTitle
translatableResourceId
__typename
}
userErrors {
field
message
__typename
}
__typename
}
}
And query
query NotificationSettingsIndex {
customerNotificationSettings {
id
groupName
groupDisplayName
displayName
description
suppressible
suppressed
__typename
}
}