You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i use api function "cpd_importParticipants" to add Participant in central participant database, the result seem to be wrong? who can help me ? i use lime-py-api and create a add_participants method like this:
def add_participants(self, email, firstname, lastname):
data = """ { "id" : 1,
"method":"cpd_importParticipants",
"params": { "sSessionKey": "%s",
"aParticipants": {"email":"%s", "firstname":"%s", "lastname":"%s"}
} } """ % (self.session_key, email, firstname, lastname)
return self._getJSON(data)
for excemple:
aa.add_participants("[email protected]", "jim", "tom")
but the result return add three add participants in in the central participant database ,but the info is :
firstname lastname email
a a a
j j j
t t t
The text was updated successfully, but these errors were encountered:
when i use api function "cpd_importParticipants" to add Participant in central participant database, the result seem to be wrong? who can help me ? i use lime-py-api and create a add_participants method like this:
def add_participants(self, email, firstname, lastname):
data = """ { "id" : 1,
"method":"cpd_importParticipants",
"params": { "sSessionKey": "%s",
"aParticipants": {"email":"%s", "firstname":"%s", "lastname":"%s"}
} } """ % (self.session_key, email, firstname, lastname)
return self._getJSON(data)
for excemple:
aa.add_participants("[email protected]", "jim", "tom")
but the result return add three add participants in in the central participant database ,but the info is :
firstname lastname email
a a a
j j j
t t t
The text was updated successfully, but these errors were encountered: