• Retrieves all URL query string parameters or returns false if none are found.

    Parameters

    • queryString: string

      The query string to search in (defaults to window.location).

    Returns StringMap | false

    Example

    // Get all parameter values from the given URL
    ix.api.url.getQsValues(window.location.href);

    // Example output
    {
    "rq_AppGuid": "E5D140F5537EE73862F545341DFD8ACDF2016BD4",
    "rq_TargetPageGuid": "F72584F54764ECD5BC7D04737EDC0EFE316C1441",
    "qs_mode": "new",
    "qs_page": "F72584F54764ECD5BC7D04737EDC0EFE316C1441",
    "qs_reload": "F72584F54764ECD5BC7D04737EDC0EFE316C1441"
    }