get https://app.viral-loops.com/api/v2/participant_data
Returns information about the participants of the campaign.
Encoding Params
If the any emails contain characters like the "+" you will need to encode the params parameter like this:
params = {"participants":[{"email":"[email protected]"}]}
params = encodeURIComponent(params)
var url = `https://app.viral-loops.com/api/v2/participant_data?apiToken=my_secret_api_token¶ms=${params}&filter={"limit":50,"skip":0}`