Wishpond Integration
There are a few things you’ll need to get started with your integration to Wishpond.
1. API Key
2. ListID
Once these fields have been gathered you can begin your campaign setup. The format for the Delivery Method will be HTTPPOST and the destination field will be set to:
https://api.wishpond.com/api/v1/leads/
The Reference Key field must be set to the headers that are required to pass as follows:
Content-Type=application/json,X-Api-Token=<API Key>
With your API Key in place of the <API Key> value.
The valid response should be set to ‘200’.

The data mapping for the campaign section should be formatted as follows:

The ‘id’ value should be the ‘List ID’ value that you want to append the leads to within the Wishpond system.
Additionally, the SOAP/HTML Payload section must include the schema of posting a record in JSON format which draws from the data mapping parameter fields utilizing double brackets.{
"lead": {
"email":"{{email}}",
"first_name":"{{first_name}}",
"last_name":"{{last_name}}"
}
}'
You’re now set up to post leads to Wishpond!
0 Comments