The subscription type model

Example Subscription type Object

JSON

{\n  \"type\": \"subscription\",\n  \"id\": \"1\",\n  \"state\": \"live\",\n  \"consent_type\": \"opt_out\",\n  \"default_translation\": {\n    \"name\": \"Announcements\",\n    \"description\": \"Offers, product and feature announcements\",\n    \"locale\": \"en\"\n  },\n  \"translations\": [\n    {\n      \"name\": \"Ankündigungen\",\n      \"description\": \"Angebote, Produkt- und Funktionsankündigungen\",\n      \"locale\": \"de\"\n    },\n    {\n      \"name\": \"Announcements\",\n      \"description\": \"Offers, product and feature announcements\",\n      \"locale\": \"en\"\n    }\n  ]\n}

A subscription type lets customers easily opt out of non-essential communications without missing what's important to them.

Subscription type Object

KeyTypeDescription
typeStringThe type of the object - subscription
idStringThe unique identifier representing the subscription type.
stateStringThe state of the subscription type: live, draft, archived.
default_translationObjectA translation object with the localised version of the subscription type in the default language for the workspace.
translationsArrayAn array of translations objects with the localised version of the subscription type in each available locale within your translation settings.
consent_typeStringDescribes the type of consent, this is always opt_out.