• Hi,
    I’m using CRM software which has the ability to receive leads from a website.
    In order to do so, I need to implement this code into the CF7 form.

    code #1:
    Target URLs for sending the XML DATA file, using POST protocol.

    New Ticket Add URL :

    http://(System Number).zebracrm.com/ext_interface.php?b=add_customer

    code #2:
    Here’s an example for adding a new ticket with several details:

    <?xml version="1.0" encoding="utf-8"?> 
    
    <ROOT> 
    
    <PERMISSION> 
    
     <PASSWORD>1234</PASSWORD> // valid password 
    
     </PERMISSION> 
    
     <CARD_TYPE>business customer</CARD_TYPE> // ticket type to add - (used only for add a new ticket API) 
    
     <CUST_DETAILS>//new ticket information : 
    
     < MAIL >user@zebracrm.com</ MAIL >// organization email address. 
    
     <USERNAME>manager</USERNAME> //valid Zebracrm username 
    
    < ORGNAME >ICOM Software LTD</ ORGNAME > // organization name. 
    
    < CELL >050-5555555</ CELL >// organization cellular phone number. 
    
    < STATE >ISRAEL</ STATE >// organization state. 
    
    < CITY >Petah Tikva</ CITY >// organization city. 
    
    < STREET >Hamagshimim</ STREET >// organization street. 
    
    < NUM >18</ NUM >// organization house number. 
    
    < POB >7554</ POB >// organization POB. 
    
    < ZIP >49250</ ZIP >// organization ZIP code. 
    
    < FREE_TEXT >Second floor on the left</ FREE_TEXT > 
    
     < CREDIT_NUMBER >88885555</ CREDIT_NUMBER > / / Credit card number 
    
     </ CUST_DETAILS > 
    
     < SEND_MAIL > 
    
     < MAIL >contact@zebracrm.com</ MAIL > / / Email recipients for status 
    
    update 
    
     </ SEND_MAIL > 
    
     </ROOT>

    where do I need to implement it?

    https://wordpress.org/plugins/contact-form-7/

  • The topic ‘send form data to CRM instead of email’ is closed to new replies.