General documentation of gyfti
Login api call
POST https://app.gyfti.fr/api/1.1/wf/login/
This call allows you to login on the platform
Request Body
email*
string
user's email login address for his gyfti account
password*
string
user's password
{
"status": "success",
"response": {
"token": "[YOUR_TOKEN]",
"user_id": "[YOUR_USER_ID]",
"expires":
}
}{
// Response
}{
"email" : "user@email.com",
"password" : "userspassword"
}Verify credentials with token
POST https://app.gyfti.fr/api/1.1/wf/is_log
Headers
Authorization*
string
'Bearer [YOUR_TOKEN]'
Retrieve user's campaign trigger
GET https://app.gyfti.fr/api/1.1/obj/Campaign
Headers
Authorization*
string
'Bearer [YOUR_TOKEN]'
Retrieve user's campaign trigger (postal)
GET https://app.gyfti.fr/api/1.1/obj/Campaign
Headers
Authorization*
String
'Bearer [YOUR_TOKEN]'
Add new contact to a trigger campaign (email)
POST https://app.gyfti.fr/api/1.1/wf/1_zapier_add_contact_trigger/
Request Body
contact_firstname*
String
Your recipent first name
contact_lastname*
String
Your recipient last name
contact_email*
String
Your recipient email adress
campaign*
String
The gyfti campaign from your account you wish to send to the recipient
jobtitle
String
Your recipient jobtitile
Phone
String
Your recipient jobtitle
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
Add new contact to a trigger campaign (postal)
POST https://app.gyfti.fr/api/1.1/wf/1_zapier_add_contact_trigger_directe/
Request Body
contact_email*
String
Your recipient email address
contact_fistname*
String
Your recipient first name
country*
String
Your recipient's country (for delivery purposes)
city*
String
Your recipient's city (for delivery purposes)
postal_code*
String
Your recipient's postal code (for delivery purposes)
additional_address
String
Your recipient's additional address (for delivery purposes)
address*
String
Your recipient's address (number and street name) for delivery purposes
phone*
String
Your recipient phone number (for delivery purposes)
jobtitle
String
Your recipient jobtitle
campaign*
String
The gyfti campaign (postal) from your account you wish to send to the recipient
contact_lastname*
String
Your recipient last name
Last updated