• JMap.Util.Ajax.patch

    Updates data on the server at the specified resource.

    Parameters

    • config: JRequestConfig

      the request configuration (url, params, accessToken, includeHeadersInResponse)

    Returns Promise<any>

    Example

    JMap.Util.Ajax
    .patch({ url: "https://your-url.com" })
    .then(response => console.log(response))
    .catch(error => console.error(error))