Question

I have ABC SharePoint hosted app and I have a ABClist inside ABC app, there is XYZ custom page available in host web.

Now I want to save query string URL to ABClist app list from host web's XYZ custom page (ootb page).

Was it helpful?

Solution

You need to construct post URL as shown below:

$.ajax({
        url: _spPageContextInfo.webAbsoluteUrl + "/" + "App web name" +  "/_api/web/lists/GetByTitle('" + "App web list name" + "')/items",
        type: "POST",
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            "content-Type": "application/json;odata=verbose"
        },
        data: JSON.stringify(data),
        success: function (data) {
            console.log(data);
        },
        error: function (error) {
            alert(JSON.stringify(error));
        }
    });
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top