-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Hi,
When executing the following code, the campaign is not retrieved successfully:
from pycrits import pycrits
crits = pycrits(uri,username,api_key)
params = { 'c-name' : 'somecampaign' }
print crits.campaign_by_name(params)
However, the following does allow you to retrieve it.
from pycrits import pycrits
crits = pycrits(uri,username,api_key)
params = { 'c-name' : '' }
print crits.campaign_by_name('somecampaign',params)
Not sure if this is by design, but given that an arg 'c-name' is parsed from campaign_by_name i would have expected it to be used in the query.
Cheers,
Tom
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels