Page tree
Skip to end of metadata
Go to start of metadata

Description

Subscribes a recipient to a group.
The recipient must exist in the system.

SubscriptionMode

Description

CONFIRMED_OPT_IN

New contacts receive a welcome message via email when they are added to the group. The contact does not need to confirm the subscription. A single opt-in subscription.

DOUBLE_OPT_IN

New contacts receive an invitation to join the group via email. The contact must accept the invitation before they are added to the group. A double opt-in subscription.

OPT_IN

New contacts are added to the group without notification. OPT_IN is creating self-subscribers.

Available from

v2

Example request

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ecm="http://ecircle.com/developer/ecmapi">
    <soapenv:Header/>
    <soapenv:Body>
        <ecm:membershipSubscribeByEmail>
            <email>one@test.com</email>
            <groupId>385</groupId>
            <subscriptionMode>CONFIRMED_OPT_IN</subscriptionMode>
        </ecm:membershipSubscribeByEmail>
    </soapenv:Body>
</soapenv:Envelope>

  • No labels