// source --> https://worldmobile.international/wp-content/plugins/sft-api-plugin/custom-sft-ajax.js 
jQuery(document).ready(function($) {
    $('#api-form').submit(function(event) {
        event.preventDefault();
        var endpointid = $('#endpointid').val();
        
        $.ajax({
            url: customSFT.ajax_url,
            type: 'POST',
            data: {
                action: 'submit_endpoint_form',
                endpointid: endpointid,
                submit_endpoint_nonce: $('#submit_endpoint_nonce').val()
            },
            success: function(response) {
                $('#api-result').html(response);
            },
            error: function(error) {
                $('#api-result').html('An error occurred.');
            }
        });
    });
});