对于您可能为我和其他Zapier +成员鼠标用户提供的帮助,我将非常感谢。
我想在Zapier中创建一个序列,该序列以CRM设置的标签开头。该序列看起来像this。设置标签后,我想将bundle应用于成员鼠标中的成员(捆绑是受保护的内容,“应用”它使成员具有访问权限)。这个can be done使用成员鼠标Api和示例Python由下面的成员鼠标给出:
import pycurl
# api credentials
apikey = 'XdC3YOh'
apisecret = 'gkxbLEY'
membership_level_id = '4'
affiliate_id = 'someaffiliate'
# user details
userfirst = 'John'
userlast = 'Smith'
useremail = 'johnsmith@email.com'
# parameters
params = (
'apikey=' + apikey
+ '&apisecret=' + apisecret
+ '&membership_level_id=' + membership_level_id
+ '&affiliate_id=' + affiliate_id
+ '&first_name=' + userfirst
+ '&last_name=' + userlast
+ '&email=' + useremail)
c = pycurl.Curl()
c.setopt(c.URL, 'http://www.YOURURL.com/wp-content/plugins/membermouse/api/request.php?q=/createMember')
c.setopt(c.POSTFIELDS, params)
c.setopt(c.FAILONERROR, True)
try:
c.perform()
except pycurl.error, error:
errno, errstr = error
print 'An error occurred: ', errstr
我不是开发人员,因此无法正常工作。我一直与Zapier支持部门保持联系,后者将我送到了这里。因此,我可以问您:
1)如何设置Code Zap?
2)为什么示例代码会生成错误(使用正确的键)? SyntaxError:语法无效(第32行)
3)如何设置Put Zap,或者按此顺序甚至需要它?
Put Zap - image 1 Put Zap - image 2
非常感谢!
:)
p.s-对所有链接表示歉意,我没有足够的观点来发表图片。