Add contact to campaign

This call enables you to add a contact to a gyfti campaign.

First, you must create your campaign on the gyfti app. It must be a Campaign Type "Trigger".

Secondly, you must retrieve the ID of the campaign you wish to add your contact Retrieve your gyfti campaigns

Then you can use these calls to add a contact to your campaign.

You have 2 types of campaigns can be automated, therefore, you can use 2 different calls depending if :

Add new contact to a trigger campaign (email)

POST https://app.gyfti.fr/api/1.1/wf/1_zapier_add_contact_trigger/

Use this call if you want to add a contact to an email campaign

Only Campaign Type accepted: trigger

You must retrieve your campaign id to add your contact. The id can be retrieved by a API call or directly on the campaign link when navigating on your account

https://app.gyfti.fr/offreur?p=campagne&campaign="campaign id"

an example of campaign id : 1795506931386x295342420265398301

The url can be found by opening your campaign in "Your campaigns" menu

The email address of your contact is mandatory

Postal informations are optional

Headers

Name
Type
Description

Authorization*

String

'Bearer [YOUR_TOKEN]'

Request Body

Name
Type
Description

contact_firstname*

String

Your recipient first name

contact_lastname*

String

Your recipient last name

contact_email*

String

Your recipient email address

campaign*

String

The gyfti campaign id from your account you wish to send to the recipient

company

String

Your recipient company name

jobtitle

String

Your recipient jobtitle

phone

String

Your recipient phone number

additional_address

String

Your recipient additional address

address

String

Your recipient address (number and street)

city

String

Your recipient's city

postal_code

String

Your recipient's postal code

country

String

Your recipient's country

{
  "status": "success",
  "response": {}
}
{
    "campaign": "your campaign id",
    "contact_email": "[email protected]",
    "contact_firstname": "recipient firt name",
    "contact_lastname": "recipient last name",
    "company": "recipient company",
    "jobtitle": "recipient jobtitle",
    "phone": "recipient phone number",
    "address": "recipient address ",
    "additional_address": "recipient additional address",
    "postal_code": "recipient postal code",
    "city": "recipient city",
    "country": "recipient country"
  }

Add new contact to a trigger campaign (postal)

POST https://app.gyfti.fr/api/1.1/wf/1_zapier_add_contact_trigger_directe/

Use this call if you want to add a contact to a postal campaign

Only Campaign Type accepted: trigger

You must retrieve your campaign id to add your contact. The id can be retrieved by a API call or directly on the campaign link when navigating on your account

https://app.gyfti.fr/offreur?p=campagne&campaign="campaign id"

an example of campaign id : 1795506931386x295342420265398301

The url can be found by opening your campaign in "Your campaigns" menu

The email address, full address and phone number of your contact are mandatory

Request Body

Name
Type
Description

contact_email*

String

Your recipient email address

contact_fistname*

String

Your recipient first name

contact_lastname*

String

Your recipient last name

campaign*

String

The gyfti campaign (postal) from your account you wish to send to the recipient

additional_address

String

Your recipient's additional address (for delivery purposes) useful to add the company name if delivered to an office

address*

String

Your recipient's address (number and street name) for delivery purposes

phone*

String

Your recipient phone number (for delivery purposes)

The phone can be fake if you do not have it (but for some carriers this may block parcel notifications)

jobtitle

String

Your recipient jobtitle

city*

String

Your recipient's city (for delivery purposes)

postal_code*

String

Your recipient's postal code (for delivery purposes)

country*

String

Your recipient's country (for delivery purposes)

{
  "status": "success",
  "response": {}
}

Last updated