• Resolved lmhernando

    (@lmhernando)


    Hi Awsome Plugin works like a charm,

    Is there a chance that i could submit the form data to more than one base url ?
    Meaning that i wanna send the form data to a third party (1 base url or endingpoint) in one format (Exam:Params) and to another third party (2 base url or endingpoint) the same form data with other format (Exam:json).

    Best Regards

Viewing 1 replies (of 1 total)
  • Plugin Author Qube One ltd

    (@querysolutions)

    at the moment it is not supported but you could use the ‘after_qs_cf7_api_send_lead’ hook to send it again yourself

    add_action( 'after_qs_cf7_api_send_lead' , 'send_it_again_to_another_api' , 10 ,2 );
    
    function send_it_again_to_another_api(  $result , $record ){
       //you have access to the $record here so you can do whatever you like with it
       //write your own function to send the $record to another API
    }
    • This reply was modified 6 years, 6 months ago by Qube One ltd.
Viewing 1 replies (of 1 total)
  • The topic ‘Multiple Endingpoints Submits’ is closed to new replies.